Changeset 12795
- Timestamp:
- 11/09/08 05:02:01 (5 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
plugins/sfDoctrinePollPlugin/branches/1.0/README
r8381 r12795 1 = sfDoctrinePollPlugin = 2 3 [[PageOutline(2-4,,inline)]] 1 # sfDoctrinePollPlugin # 4 2 5 3 sfDoctrinePollPlugin is a Symfony plugin which make polling a piece of cake. 6 4 7 = Documentation = 8 9 == Installation == 10 === SVN repository === 5 # Documentation # 11 6 12 7 13 === Plugin configuration === 8 ## Usage ## 14 9 15 16 == Usage == 17 ==== User Identification ==== 10 #### User Identification #### 18 11 Currently user identification is determined by a static method in the PluginsfPoll model. 19 12 You may change the way users are identified by overriding the method getUserIdentifier() 20 13 Currently it is a concatentation of the users IP Address and the USER_AGENT 21 14 15 ### Modules ### 22 16 23 24 === API === 25 26 27 === Modules === 28 29 The plugin provide both Back and Front office standard modules that you can 17 The plugin provide both Back and Front office standard modules that you can 30 18 activate in the {{{settings.yml}}} of your apps. 31 19 32 20 In front office, you can activate the sfPolls module : 33 21 34 {{{ 35 .settings36 enabled_modules: [default, ..., sfPolls]37 }}} 22 [yaml] 23 # /apps/frontend/config/settings.yml 24 .settings 25 enabled_modules: [default, ..., sfPolls] 38 26 39 27 In back office, you should activate the sf_poll module : 40 28 41 {{{ 42 .settings 43 enabled_modules: [default, ..., sf_poll] 44 }}} 45 == TODO == 46 47 == Changelog == 48 49 === 2008-04-03 | v0.1.0 === 50 51 * Initial release 29 [yaml] 30 # /apps/backend/config/settings.yml 31 .settings 32 enabled_modules: [default, ..., sf_poll]