Author: fizyk Date: 2010-04-08 21:36:51 +0200 (Thu, 08 Apr 2010) New Revision: 29046
Modified: plugins/sfForkedDoctrineApplyPlugin/trunk/README plugins/sfForkedDoctrineApplyPlugin/trunk/TODO plugins/sfForkedDoctrineApplyPlugin/trunk/package.xml.tmpl Log: updated readme Modified: plugins/sfForkedDoctrineApplyPlugin/trunk/README =================================================================== --- plugins/sfForkedDoctrineApplyPlugin/trunk/README 2010-04-08 12:05:58 UTC (rev 29045) +++ plugins/sfForkedDoctrineApplyPlugin/trunk/README 2010-04-08 19:36:51 UTC (rev 29046) @@ -30,7 +30,7 @@ However it is also possible to install it through archive: - symfony plugin:install sfForkedDoctrineApplyPlugin-1.1.0.tgz + symfony plugin:install sfForkedDoctrineApplyPlugin-1.1.1.tgz just place downloaded package in your project's root first. @@ -141,8 +141,10 @@ ###CAPTCHA### -Starting from 1.0.3 version, sfForkedDoctrineApplyPlugin integrates reCaptcha. To use it, you have to install [sfFormExtraPlugin](http://www.symfony-project.org/plugins/sfFormExtraPlugin) to get access to [reCaptcha](http://recaptcha.net/) widget and validator. Second step is to be conducted in your app.yml file, and add these: +Starting from 1.1.0 version, sfForkedDoctrineApplyPlugin integrates reCaptcha. To use it, you have to install [sfFormExtraPlugin](http://www.symfony-project.org/plugins/sfFormExtraPlugin) to get access to [reCaptcha](http://recaptcha.net/) widget and validator. Second step is to be conducted in your app.yml file, and add these: +**apps/APPLICATION/config/app.yml** + all: #... recaptcha: @@ -152,6 +154,22 @@ enabled property is for enabling and disabling captcha. After setting this, reCaptcha will appear on apply and reset request pages. +###Custom forms### + +Since version 1.1.1, it is possible to define own, custom forms for apply action, however all custom forms must extend the Apply ones. To use custom forms, you need to define them in your app.yml file: + +**apps/APPLICATION/config/app.yml** + + all: + #... + sfForkedApply: + applyForm: sfApplyApplyForm + resetForm: sfApplyResetForm + resetRequestForm: sfApplyResetRequestForm + settingsForm: sfApplySettingsForm + +The above example uses standard sfApplyForms. + ###Login redirect### There are two settings regarding directing user after actions he takes within sfApply module: Modified: plugins/sfForkedDoctrineApplyPlugin/trunk/TODO =================================================================== --- plugins/sfForkedDoctrineApplyPlugin/trunk/TODO 2010-04-08 12:05:58 UTC (rev 29045) +++ plugins/sfForkedDoctrineApplyPlugin/trunk/TODO 2010-04-08 19:36:51 UTC (rev 29046) @@ -4,6 +4,5 @@ * setting that would allow disable email verification during registration * more i18n! * possibility to edit emails -* Possibility to use own apply form * Edit form to add to the sfGuardUser module, or module for forms. * Routes listener, that will add routes to app \ No newline at end of file Modified: plugins/sfForkedDoctrineApplyPlugin/trunk/package.xml.tmpl =================================================================== --- plugins/sfForkedDoctrineApplyPlugin/trunk/package.xml.tmpl 2010-04-08 12:05:58 UTC (rev 29045) +++ plugins/sfForkedDoctrineApplyPlugin/trunk/package.xml.tmpl 2010-04-08 19:36:51 UTC (rev 29046) @@ -53,7 +53,7 @@ <changelog> <release> <version> - <release>1.1.0</release> + <release>1.1.1</release> <api>1.0.0</api> </version> <stability> @@ -61,9 +61,11 @@ <api>stable</api> </stability> <license uri="http://www.symfony-project.org/license">MIT license</license> - <date>2010-03-31</date> + <date>2010-04-08</date> <license>MIT</license> <notes> + * fizyk: updated readme + * fizyk: added the ability to use custom ApplyForms * Daniel Londero: added missing string (23) to italian sfForkedApply.xml </notes> </release> -- You received this message because you are subscribed to the Google Groups "symfony SVN" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/symfony-svn?hl=en.
