![]() |
|
sfDoctrineUserPlugin - 1.2.0Stephen Ostrow |
|
![]() |
3
users
Sign-in
to change your status |
Stephen Ostrow |
This plugin provides a starting point for anyone needing a quick full user in any application. It creates a user which has a sfGuardUser. This user then has the following properties.
| Name | Status | |
|---|---|---|
|
|
lead | moc.sngisedbewos <<ta>> wortsos |
The MIT License
Copyright (c) 2007-2008 Stephen Ostrow <sostrow@sowebdesigns.com>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
| Version | License | API | Released |
|---|---|---|---|
| 1.2.4stable | MIT license | 1.2.0stable | 06/03/2009 |
| 1.2.3beta | MIT license | 1.2.0beta | 04/03/2009 |
| 1.2.2stable | MIT license | 1.2.0stable | 22/02/2009 |
| 1.2.1stable | MIT license | 1.2.0stable | 22/02/2009 |
| 1.2.0beta | MIT license | 1.2.0beta | 09/02/2009 |
| Version | License | API | Released |
|---|---|---|---|
| 1.1.2beta | MIT | 1.1.0beta | 08/11/2008 |
| Version | License | API | Released |
|---|---|---|---|
| 1.0.1stable | MIT | 1.0.0stable | 09/11/2008 |
| 1.0.0stable | MIT | 1.0.0stable | 08/11/2008 |
Getting the correct symfony 1.1 dependency
Fixing a bug where when the sfGuardDoctrinePlugin was renamed to sfDoctrineGuardPlugin that the overriding of the sfGuardUser module did not work correctly. Making my own module for editing a guard user via ajax.
This is the initial plugin
This plugin provides a starting point for anyone needing a quick full user in any application. It creates a user which has a sfGuardUser. This user then has the following properties. * sfGuardUser * Multiple Groups * Multiple permissions * username * password * sfUserUser * Multiple Email Addresses * Multiple Addresses * Multiple Phone Numbers * Multiple Instant Messaging Accounts * Multiple Billing Records
Gives an admin page to edit all properties of a user on one page in a clean fashion through the use of ajax and thickBox
sfGuardDoctrinePlugin sfGuardDoctrinePlugin
For all options, execute the commands shown from the root of your project.
This means you'll get the files only and you'll not be able to update using subversion[BR]
svn export http://svn.symfony-project.com/plugins/sfDoctrineUserPlugin/branches/1.0 ./plugins/sfDoctrineUserPlugin
=== Single Checkout=== This means you'll get the files and will manually have to update using subversion[BR]
svn checkout http://svn.symfony-project.com/plugins/sfDoctrineUserPlugin/branches/1.0 ./plugins/sfDoctrineUserPlugin
If you are already using subversion for your project, and want to automatically include the latest version of this plugin on each svn update, the correct way to include the sfDoctrineUserPlugin repository is to define svn:externals. Go to your symfony project
svn propedit svn:externals plugins
in this file add a line containing
sfDoctrineUserPlugin http://svn.symfony-project.com/plugins/sfDoctrineUserPlugin/branches/1.0
Edit the applications myUser.class.php of any application you want to be able to access the extended users information
// Default line 3 in /apps/APPLICATION/data/lib/myUser.class.php
class myUser extends sfBasicSecurityUser
// New line 3 for user with sfDoctrineUserPlugin
class myUser extends sfUserSecurityUser
