Differences Between: [Versions 400 and 401] [Versions 400 and 402] [Versions 400 and 403]
This file defines the userlist_collection class object. The userlist_collection is used to organize a collection of userlists.
Copyright: | 2018 Andrew Nicols <andrew@nicols.co.uk> |
License: | http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later |
File Size: | 177 lines (5 kb) |
Included or required: | 0 times |
Referenced: | 0 times |
Includes or requires: | 0 files |
userlist_collection:: (12 methods):
__construct()
get_context()
add_userlist()
get_userlists()
get_userlist_for_component()
current()
key()
next()
valid()
rewind()
get_key_from_position()
count()
Class: userlist_collection - X-Ref
A collection of userlist items.__construct(\context $context) X-Ref |
Constructor to create a new userlist_collection. param: \context $context The context to which this collection belongs. |
get_context() X-Ref |
Return the context that this collection relates to. return: int |
add_userlist(userlist_base $userlist) X-Ref |
Add a userlist to this collection. return: $this param: userlist_base $userlist the userlist to export. |
get_userlists() X-Ref |
Get the userlists in this collection. return: array the associative array of userlists in this collection, indexed by component name. |
get_userlist_for_component(string $component) X-Ref |
Get the userlist for the specified component. return: userlist_base|null param: string $component the frankenstyle name of the component to fetch for. |
current() X-Ref |
Return the current contexlist. return: \user |
key() X-Ref |
Return the key of the current element. return: mixed |
next() X-Ref |
Move to the next user in the list. |
valid() X-Ref |
Check if the current position is valid. return: bool |
rewind() X-Ref |
Rewind to the first found user. The list of users is uniqued during the rewind. The rewind is called at the start of most iterations. |
get_key_from_position() X-Ref |
Get the key for the current iterator position. return: string |
count() X-Ref |
Return the number of users. |