Changeset 1803 for sandboxes/asandbox/trunk/lib/model/doctrine/sfDoctrineGuardPlugin/base/BasesfGuardUser.class.php
- Timestamp:
- 07/20/10 12:01:58 (22 months ago)
- Location:
- sandboxes/asandbox/trunk
- Files:
-
- 2 modified
-
. (modified) (1 prop)
-
lib/model/doctrine/sfDoctrineGuardPlugin/base/BasesfGuardUser.class.php (modified) (8 diffs)
Legend:
- Unmodified
- Added
- Removed
-
sandboxes/asandbox/trunk
- Property svn:mergeinfo changed
/sandboxes/asandbox/branches/1.4 (added) merged: 1731
- Property svn:mergeinfo changed
-
sandboxes/asandbox/trunk/lib/model/doctrine/sfDoctrineGuardPlugin/base/BasesfGuardUser.class.php
r931 r1803 16 16 * @property Doctrine_Collection $groups 17 17 * @property Doctrine_Collection $permissions 18 * @property Doctrine_Collection $aPage 19 * @property Doctrine_Collection $aAreaVersion 20 * @property Doctrine_Collection $Accesses 21 * @property Doctrine_Collection $MediaItems 18 22 * @property Doctrine_Collection $BlogAuthorItems 19 23 * @property Doctrine_Collection $BlogEditorItems … … 21 25 * @property Doctrine_Collection $BlogCategories 22 26 * @property Doctrine_Collection $BlogCategoryUsers 23 * @property Doctrine_Collection $aPage24 * @property Doctrine_Collection $aAreaVersion25 * @property Doctrine_Collection $Accesses26 * @property Doctrine_Collection $MediaItems27 27 * @property Doctrine_Collection $sfGuardUserPermission 28 28 * @property Doctrine_Collection $sfGuardUserGroup … … 39 39 * @method Doctrine_Collection getGroups() Returns the current record's "groups" collection 40 40 * @method Doctrine_Collection getPermissions() Returns the current record's "permissions" collection 41 * @method Doctrine_Collection getAPage() Returns the current record's "aPage" collection 42 * @method Doctrine_Collection getAAreaVersion() Returns the current record's "aAreaVersion" collection 43 * @method Doctrine_Collection getAccesses() Returns the current record's "Accesses" collection 44 * @method Doctrine_Collection getMediaItems() Returns the current record's "MediaItems" collection 41 45 * @method Doctrine_Collection getBlogAuthorItems() Returns the current record's "BlogAuthorItems" collection 42 46 * @method Doctrine_Collection getBlogEditorItems() Returns the current record's "BlogEditorItems" collection … … 44 48 * @method Doctrine_Collection getBlogCategories() Returns the current record's "BlogCategories" collection 45 49 * @method Doctrine_Collection getBlogCategoryUsers() Returns the current record's "BlogCategoryUsers" collection 46 * @method Doctrine_Collection getAPage() Returns the current record's "aPage" collection47 * @method Doctrine_Collection getAAreaVersion() Returns the current record's "aAreaVersion" collection48 * @method Doctrine_Collection getAccesses() Returns the current record's "Accesses" collection49 * @method Doctrine_Collection getMediaItems() Returns the current record's "MediaItems" collection50 50 * @method Doctrine_Collection getSfGuardUserPermission() Returns the current record's "sfGuardUserPermission" collection 51 51 * @method Doctrine_Collection getSfGuardUserGroup() Returns the current record's "sfGuardUserGroup" collection … … 61 61 * @method sfGuardUser setGroups() Sets the current record's "groups" collection 62 62 * @method sfGuardUser setPermissions() Sets the current record's "permissions" collection 63 * @method sfGuardUser setAPage() Sets the current record's "aPage" collection 64 * @method sfGuardUser setAAreaVersion() Sets the current record's "aAreaVersion" collection 65 * @method sfGuardUser setAccesses() Sets the current record's "Accesses" collection 66 * @method sfGuardUser setMediaItems() Sets the current record's "MediaItems" collection 63 67 * @method sfGuardUser setBlogAuthorItems() Sets the current record's "BlogAuthorItems" collection 64 68 * @method sfGuardUser setBlogEditorItems() Sets the current record's "BlogEditorItems" collection … … 66 70 * @method sfGuardUser setBlogCategories() Sets the current record's "BlogCategories" collection 67 71 * @method sfGuardUser setBlogCategoryUsers() Sets the current record's "BlogCategoryUsers" collection 68 * @method sfGuardUser setAPage() Sets the current record's "aPage" collection69 * @method sfGuardUser setAAreaVersion() Sets the current record's "aAreaVersion" collection70 * @method sfGuardUser setAccesses() Sets the current record's "Accesses" collection71 * @method sfGuardUser setMediaItems() Sets the current record's "MediaItems" collection72 72 * @method sfGuardUser setSfGuardUserPermission() Sets the current record's "sfGuardUserPermission" collection 73 73 * @method sfGuardUser setSfGuardUserGroup() Sets the current record's "sfGuardUserGroup" collection … … 144 144 'foreign' => 'permission_id')); 145 145 146 $this->hasMany('aPage', array( 147 'local' => 'id', 148 'foreign' => 'author_id')); 149 150 $this->hasMany('aAreaVersion', array( 151 'local' => 'id', 152 'foreign' => 'author_id')); 153 154 $this->hasMany('aAccess as Accesses', array( 155 'local' => 'id', 156 'foreign' => 'user_id')); 157 158 $this->hasMany('aMediaItem as MediaItems', array( 159 'local' => 'id', 160 'foreign' => 'owner_id')); 161 146 162 $this->hasMany('aBlogItem as BlogAuthorItems', array( 147 163 'local' => 'id', … … 166 182 'foreign' => 'user_id')); 167 183 168 $this->hasMany('aPage', array(169 'local' => 'id',170 'foreign' => 'author_id'));171 172 $this->hasMany('aAreaVersion', array(173 'local' => 'id',174 'foreign' => 'author_id'));175 176 $this->hasMany('aAccess as Accesses', array(177 'local' => 'id',178 'foreign' => 'user_id'));179 180 $this->hasMany('aMediaItem as MediaItems', array(181 'local' => 'id',182 'foreign' => 'owner_id'));183 184 184 $this->hasMany('sfGuardUserPermission', array( 185 185 'local' => 'id',

