
Public Member Functions | |
| __construct ($constraints=null) | |
| Constructs new SDRAgent object. | |
| addSDRVersion ($parent=null, $cserd, $state= '', $comment= '', $created= '', $modified= '0000-00-00 00:00:00') | |
| Add new SDRVersion object connected to this object. | |
| getDisplayName () | |
| Return a display name for this agent. | |
| listSDRVersions ($constraints=array(), $limit=array(), $order=array(), $count=false) | |
| Retrieves list of children SDRVersion objects. | |
| listSDRVersionsMulti ($constraints=array(), $limit=array(), $order=array(), $count=false, $depth=1) | |
| Retrieves list of children SDRVersion objects using joins. | |
Static Public Member Functions | |
| static | agentFromCSERDUser ($user) |
| Retrieve or create an SDRAgent corresponding to a CSERD user. | |
| static | agentFromS2User ($user, $realm) |
| Retrieve or create an SDRAgent corresponding to an SUser object. | |
| static | agentFromSUser ($user, $realm) |
| Retrieve or create an SDRAgent corresponding to an SUser object. | |
| static | exists ($constraints=array()) |
| Checks to see if object exists according to constraints. | |
| static | getAttributesStatic () |
| Retrieves attributes and information about them. | |
| static | getList ($constraints=array(), $limit=array(), $order=array(), $count=false) |
| Retrieves list of SDRAgent objects. | |
| static | getTableNameStatic () |
| Retrieves name of table represented by this class. | |
| static | retrieve ($constraints=array(), $checkOnly=false) |
| Retrieves a single object of this type, given the constraints. | |
Static Public Attributes | |
| static | $ATTRIBUTES |
| Attributes for this entity and information about them. | |
Use agentFromSUser() or agentFromCSERDUser() to construct agents representing users from the LDAP or CSERD realms.
Definition at line 12 of file SDRAgent.php5.
| SDRAgent::__construct | ( | $ | constraints = null |
) |
Constructs new SDRAgent object.
This method will only populate the object if a constraints array is passed in, to use for selecting the information for the object from the database (see Guide to Database Constraints).
| $constraints | [array]: constraints array for populating |
Definition at line 54 of file SDRAgent.php5.
References SDatabaseModel::populate(), SModel2::registerAttributes(), SDatabaseModel::registerPrimaryKey(), and SDatabaseModel::registerTableName().
| SDRAgent::addSDRVersion | ( | $ | parent = null, |
|
| $ | cserd, | |||
| $ | state = '', |
|||
| $ | comment = '', |
|||
| $ | created = '', |
|||
| $ | modified = '0000-00-00 00:00:00' | |||
| ) |
Add new SDRVersion object connected to this object.
This method creates a new SDRVersion and makes sure that relevant foreign keys in that object point to this object and any other necessary objects as passed in as parameters to this method. For parameters that request another model object, you may either pass in the model object itself, or the id value for that object, as would be used in the foreign key of the new SDRVersion object. For example, if the new object needs to point to both this object and, say, a user object, then you can either pass in a user object, or a user ID.
| $parent | [int]: INSERT DESCRIPTION HERE | |
| $cserd | [SDRResource]: Can also be foreign key value. INSERT DESCRIPTION HERE | |
| $state | [string]: INSERT DESCRIPTION HERE | |
| $comment | [string]: INSERT DESCRIPTION HERE | |
| $created | [time]: INSERT DESCRIPTION HERE | |
| $modified | [time]: INSERT DESCRIPTION HERE |
Definition at line 203 of file SDRAgent.php5.
References SDatabaseModel::commit().
| static SDRAgent::agentFromCSERDUser | ( | $ | user | ) | [static] |
Retrieve or create an SDRAgent corresponding to a CSERD user.
Customized version of agentFromSUser for CSERDUser objects. Store the CSERDUserId in the SDRAgent object to provide more audit information.
Definition at line 304 of file SDRAgent.php5.
References SDatabaseModel::commit().
Referenced by SDRService::addMetadataEditor().
| static SDRAgent::agentFromS2User | ( | $ | user, | |
| $ | realm | |||
| ) | [static] |
Retrieve or create an SDRAgent corresponding to an SUser object.
An SDR agent corresponds either to a user within an authentication realm (i.e., cserd, ldap) or a service accessing the api (use 'api' as the realm and the name of the service or user agent as the username).
Return an agent, creating one if it does not already exist.
| $user | [SUser]: The user to which the SDRAgent should correspond | |
| $realm | [string]: The name of the realm for this user (i.e., cserd, ldap, or api) |
Definition at line 274 of file SDRAgent.php5.
References SDatabaseModel::commit().
| static SDRAgent::agentFromSUser | ( | $ | user, | |
| $ | realm | |||
| ) | [static] |
Retrieve or create an SDRAgent corresponding to an SUser object.
An SDR agent corresponds either to a user within an authentication realm (i.e., cserd, ldap) or a service accessing the api (use 'api' as the realm and the name of the service or user agent as the username).
Return an agent, creating one if it does not already exist.
| $user | [SUser]: The user to which the SDRAgent should correspond | |
| $realm | [string]: The name of the realm for this user (i.e., cserd, ldap, or api) |
Definition at line 240 of file SDRAgent.php5.
References SDatabaseModel::commit().
| static SDRAgent::exists | ( | $ | constraints = array() |
) | [static] |
Checks to see if object exists according to constraints.
This is simply an alias for retrieve($constraints, true);
| $constraints | [array]: constraints used to check for existence of object |
Definition at line 94 of file SDRAgent.php5.
| static SDRAgent::getAttributesStatic | ( | ) | [static] |
Retrieves attributes and information about them.
This method is needed because there is no generic way to get at the $ATTRIBUTES static member variable without this kind of method. If you do not need to generically grab the attributes of a model class, just use ModelClass::$ATTRIBUTES or $obj->getAttributes().
Definition at line 124 of file SDRAgent.php5.
| SDRAgent::getDisplayName | ( | ) |
Return a display name for this agent.
If a full name exists, return that. Otherwise, just return the username. Append the realm afterwards in parentheses.
Definition at line 331 of file SDRAgent.php5.
| static SDRAgent::getList | ( | $ | constraints = array(), |
|
| $ | limit = array(), |
|||
| $ | order = array(), |
|||
| $ | count = false | |||
| ) | [static] |
Retrieves list of SDRAgent objects.
See Guide to Database Constraints for more on how to construct constraint and other arrays for this method.
| $constraints | [array]: limit results by criteria | |
| $limit | [array]: limit results by count | |
| $order | [array]: change ordering of results | |
| $count | [boolean]: if true, return the number of objects that would have been returned, rather than the objects themselves |
Definition at line 111 of file SDRAgent.php5.
| static SDRAgent::getTableNameStatic | ( | ) | [static] |
Retrieves name of table represented by this class.
Definition at line 133 of file SDRAgent.php5.
| SDRAgent::listSDRVersions | ( | $ | constraints = array(), |
|
| $ | limit = array(), |
|||
| $ | order = array(), |
|||
| $ | count = false | |||
| ) |
Retrieves list of children SDRVersion objects.
This method retrieves objects of type SDRVersion which have their modifiedAgentId field equal to the value of this object's id field. The constraints, limit and order parameters can be used to trim down and order the results. See Guide to Database Constraints for more on using database constraints with DBI2/SModel2.
| $constraints | [array]: constraints array to further limit results | |
| $limit | [array]: limit array to control how many and which results are returned | |
| $order | [array]: order array to control the ordering of the returned results | |
| $count | [boolean]: if true, only return the count of how many objects would be returned, rather than the objects themselves |
$count is true, or null on error Definition at line 154 of file SDRAgent.php5.
| SDRAgent::listSDRVersionsMulti | ( | $ | constraints = array(), |
|
| $ | limit = array(), |
|||
| $ | order = array(), |
|||
| $ | count = false, |
|||
| $ | depth = 1 | |||
| ) |
Retrieves list of children SDRVersion objects using joins.
This method retrieves objects of type SDRVersion which have their modifiedAgentId field equal to the value of this object's id field. The constraints, limit and order parameters can be used to trim down and order the results. See Guide to Database Constraints for more on using database constraints with DBI2/SModel2. Unlike listSDRVersions(), this method joins the child objects with their parent objects.
| $constraints | [array]: constraints array to further limit results | |
| $limit | [array]: limit array to control how many and which results are returned | |
| $order | [array]: order array to control the ordering of the returned results | |
| $count | [boolean]: if true, only return the count of how many objects would be returned, rather than the objects themselves | |
| $depth | [int]: how deep to traverse dependencies when doing joins |
$count is true, or null on error Definition at line 178 of file SDRAgent.php5.
| static SDRAgent::retrieve | ( | $ | constraints = array(), |
|
| $ | checkOnly = false | |||
| ) | [static] |
Retrieves a single object of this type, given the constraints.
Use this method instead of the constructor since the constructor cannot return error conditions properly.
| $constraints | [array]: constraints to use when retrieving object | |
| $checkOnly | [boolean]: if true, just return whether the row exists in the DB |
Definition at line 76 of file SDRAgent.php5.
Referenced by SDRVersion::getParentCreatedAgent(), and SDRVersion::getParentModifiedAgent().
1.5.6