Releases for sf 1.4
| Version |
License |
API |
Released |
|
0.1.7beta
|
MIT |
0.1.0beta
|
04/09/2010 |
|
0.1.6beta
|
MIT |
0.1.0beta
|
24/02/2010 |
|
0.1.5beta
|
MIT |
0.1.0beta
|
21/02/2010 |
|
0.1.4beta
|
MIT |
0.1.0beta
|
24/01/2010 |
|
0.1.3beta
|
MIT |
0.1.0beta
|
24/01/2010 |
|
0.1.2beta
|
MIT |
0.1.0beta
|
22/01/2010 |
|
0.1.1beta
|
MIT |
0.1.0beta
|
17/01/2010 |
|
0.1.0beta
|
MIT |
0.1.0beta
|
03/01/2010 |
Releases for sf 1.3
| Version |
License |
API |
Released |
|
0.1.7beta
|
MIT |
0.1.0beta
|
04/09/2010 |
|
0.1.6beta
|
MIT |
0.1.0beta
|
24/02/2010 |
|
0.1.5beta
|
MIT |
0.1.0beta
|
21/02/2010 |
|
0.1.4beta
|
MIT |
0.1.0beta
|
24/01/2010 |
|
0.1.3beta
|
MIT |
0.1.0beta
|
24/01/2010 |
|
0.1.2beta
|
MIT |
0.1.0beta
|
22/01/2010 |
|
0.1.1beta
|
MIT |
0.1.0beta
|
17/01/2010 |
|
0.1.0beta
|
MIT |
0.1.0beta
|
03/01/2010 |
| Name |
Channel |
Version |
| tdCorePlugin |
plugins.symfony-project.org |
0.1.10- |
| sfCryptoCaptchaPlugin |
plugins.symfony-project.org |
0.1.0- |
Changelog for release 0.1.7 - 04/09/2010
- added backend module AJAX activate/deactivate interface
Other releases
Release 0.1.7 - 04/09/2010
- added backend module AJAX activate/deactivate interface
Release 0.1.6 - 24/02/2010
- short description sign count moved to core
Release 0.1.5 - 21/02/2010
- guestbook list/form templates use background image
Release 0.1.4 - 24/01/2010
- added crypto captcha support (dependency on sfCryptoCaptchaPlugin)
- added translations
- default sort in admin panel
Release 0.1.3 - 24/01/2010
- admin generator updated
- short text method created/admin
- docs updated
Release 0.1.2 - 22/01/2010
- added stylesheets and modified layout
- added model methods
- fixed adding posts
Release 0.1.1 - 17/01/2010
- switched pagination images to core td pagination
- forms and filters updated
- documentation updated
Release 0.1.0 - 03/01/2010
tdGuestbookPlugin
Provides funcionalities for a standard guestbook.
This plugin is a part of TD CMF and is based on Doctrine ORM.
Installation
Install the plugin via the subversion repository by executing the following
command from the project root directory:
$ svn co http://svn.symfony-project.com/plugins/tdGuestbookPlugin/trunk plugins/tdGuestbookPlugin
or by using the default symfony plugin install command:
$ ./symfony plugin:install -s beta tdGuestbookPlugin
as the actual release is in its beta stage. Right after the installation of the
plugin, you should update plugin assets:
$ ./symfony plugin:publish-assets
so that the predefined layout files of the plugin are accessible. Everything
is done properly now.
Usage
Enable the tdSampleGuestbook module in your frontend application's
config/settings.yml enabled_modules section:
enabled_modules: [tdSampleGuestbook ]( ...,)
Fixtures are provided with the plugin - randomly generated data. Run the
following commands:
$ ./symfony doctrine:build --all
and
$ ./symfony doctrine:data-load
and run the following URL in your browser:
http://your-project/sample-guestbook
Enable the td_guestbook admin generator in your backend application's
config/settings.yml enabled_modules section:
enabled_modules: [td_guestbook ]( ...,)
tdSampleGuestbook uses sfCryptoCaptchaPlugin to generate captcha images. A
special class with captcha configuration is included: tdFrontendGuestbookForm.
td_guestbook admin module uses the standard tdGuestbookForm.
To use the activate/deactivate AJAX interface in the backend td_guestbook
module, remember to enable the graphics module of the tdCorePlugin
inside your settings.yml file (see tdCorePlugin README).
enabled_modules: [graphics ]( ...,)
Configuration
You can modify settings of the tdGuestbookPlugin in the
config/tdGuestbookPluginConfiguration.class.php file:
- td_guestbook_entries_per_page - number of guestbook entries shown on each
page.
Translations
You may translate tdGuestbook module to your own language by creating
td.XX.xml file under modules/tdGuestbook/i18n
directory (where XX is the language code). So far, English language is the
default one and additionally Polish translationis provided.
Dependencies