Moodle PHP Documentation 4.3
Moodle 4.3.5 (Build: 20240610) (7dcfaa79f78)
|
A user selector control for potential subscribers to the selected forum. More...
Public Member Functions | |
__construct ($name, $options) | |
Constructor method. | |
clear_exclusions () | |
Clear the list of excluded user ids. | |
display ($return=false) | |
Output this user_selector as HTML. | |
exclude ($arrayofuserids) | |
All to the list of user ids that this control will not select. | |
find_users ($search) | |
Finds all potential users. | |
get_exclusions () | |
Returns the list of user ids that this control will not select. | |
get_name () | |
Returns the id/name of this control. | |
get_rows () | |
Returns the number of rows to display in this control. | |
get_selected_user () | |
Convenience method for when multiselect is false (throws an exception if not). | |
get_selected_users () | |
The users that were selected. | |
invalidate_selected_users () | |
Invalidates the list of selected users. | |
is_multiselect () | |
Returns true is multiselect should be allowed. | |
output_user ($user) | |
Convert a user object to a string suitable for displaying as an option in the list box. | |
set_existing_subscribers (array $users) | |
Sets the existing subscribers. | |
set_extra_fields ($fields) | |
Set the user fields that are displayed in the selector in addition to the user's name. | |
set_force_subscribed ($setting=true) | |
Sets this forum as force subscribed or not. | |
set_multiselect ($multiselect) | |
Whether this control will allow selection of many, or just one user. | |
set_rows ($numrows) | |
The height this control will be displayed, in rows. | |
Public Attributes | |
int | $maxusersperpage = 100 |
this is used to define maximum number of users visible in list | |
boolean | $viewfullnames = false |
Whether to override fullname() | |
Protected Member Functions | |
get_options () | |
Returns an arary of options for this control. | |
initialise_javascript ($search) | |
Initialises JS for this control. | |
is_validating () | |
Returns true if this control is validating a list of users. | |
load_selected_users () | |
Get the list of users that were selected by doing optional_param then validating the result. | |
output_optgroup ($groupname, $users, $select) | |
Output one particular optgroup. | |
output_options ($groupedusers, $search) | |
Output the list of <optgroup>s and <options>s that go inside the select. | |
required_fields_sql (string $u) | |
Returns SQL to select required fields. | |
search_button_caption () | |
Returns the string to use for the search button caption. | |
search_sql (string $search, string $u) | |
Returns an array with SQL to perform a search and the params that go into it. | |
too_many_results ($search, $count) | |
Used to generate a nice message when there are too many users to show. | |
Protected Attributes | |
object | $accesscontext |
Context used for capability checks regarding this selector (does not necessarily restrict user list) | |
boolean | $autoselectunique = false |
If only one user matches the search, should we select them automatically. | |
object | $context = null |
The context of the forum this selector is being used for. | |
int | $currentgroup = null |
The id of the current group. | |
array | $exclude = array() |
A list of userids that should not be returned by this control. | |
$existingsubscribers = array() | |
Can be used to store existing subscribers so that they can be removed from the potential subscribers list. | |
array | $extrafields |
Extra fields to search on and return in addition to firstname and lastname. | |
bool | $forcesubscribed = false |
If set to true EVERYONE in this course is force subscribed to this forum. | |
int | $forumid = null |
The id of the forum this selector is being used for. | |
boolean | $includecustomfields = false |
Whether to include custom user profile fields. | |
boolean | $multiselect = true |
Whether the conrol should allow selection of many users, or just one. | |
string | $name |
The control name (and id) in the HTML. | |
boolean | $preserveselected = false |
When the search changes, do we keep previously selected options that do not match the new search term? | |
int | $rows = USER_SELECTOR_DEFAULT_ROWS |
The height this control should have, in rows. | |
int | $searchtype = USER_SEARCH_STARTS_WITH |
When searching, do we only match the starts of fields (better performance) or do we match occurrences anywhere or do we match exact the fields. | |
array null | $selected = null |
A list of the users who are selected. | |
string | $userfieldsjoin = '' |
User fields join for custom fields. | |
array | $userfieldsmappings = [] |
User fields mappings for custom fields. | |
array | $userfieldsparams = [] |
User fields params for custom fields. | |
string | $userfieldsselects = '' |
User fields selects for custom fields. | |
mixed | $validatinguserids = null |
This is used by get selected users. | |
Static Protected Attributes | |
static array | $jsmodule |
JavaScript YUI3 Module definition. | |
A user selector control for potential subscribers to the selected forum.
mod_forum_potential_subscriber_selector::__construct | ( | $name, | |
$options ) |
Constructor method.
string | $name | |
array | $options |
Reimplemented from mod_forum_subscriber_selector_base.
|
inherited |
Output this user_selector as HTML.
boolean | $return | if true, return the HTML as a string instead of outputting it. |
mixed | if $return is true, returns the HTML as a string, otherwise returns nothing. |
|
inherited |
All to the list of user ids that this control will not select.
For example, on the role assign page, we do not list the users who already have the role in question.
array | $arrayofuserids | the user ids to exclude. |
mod_forum_potential_subscriber_selector::find_users | ( | $search | ) |
Finds all potential users.
Potential subscribers are all enroled users who are not already subscribed.
string | $search |
array |
Reimplemented from user_selector_base.
|
inherited |
Returns the list of user ids that this control will not select.
array | the list of user ids that this control will not select. |
|
inherited |
Returns the id/name of this control.
string | the id/name that this control will have in the HTML. |
|
protected |
Returns an arary of options for this control.
array |
Reimplemented from mod_forum_subscriber_selector_base.
|
inherited |
Returns the number of rows to display in this control.
integer | the height this control will be displayed, in rows. |
|
inherited |
Convenience method for when multiselect is false (throws an exception if not).
moodle_exception |
object | the selected user object, or null if none. |
|
inherited |
The users that were selected.
This is a more sophisticated version of optional_param($this->name, array(), PARAM_INT) that validates the returned list of ids against the rules for this user selector.
array | of user objects. |
|
protectedinherited |
Initialises JS for this control.
string | $search |
string | any HTML needed here. |
|
inherited |
Invalidates the list of selected users.
If you update the database in such a way that it is likely to change the list of users that this component is allowed to select from, then you must call this method. For example, on the role assign page, after you have assigned some roles to some users, you should call this.
|
inherited |
Returns true is multiselect should be allowed.
boolean | whether this control will allow selection of more than one user. |
|
protectedinherited |
Returns true if this control is validating a list of users.
boolean | if true, we are validating a list of selected users, rather than preparing a list of uesrs to choose from. |
|
protectedinherited |
Get the list of users that were selected by doing optional_param then validating the result.
array | of user objects. |
|
protectedinherited |
Output one particular optgroup.
Used by the preceding function output_options.
string | $groupname | the label for this optgroup. |
array | $users | the users to put in this optgroup. |
boolean | $select | if true, select the users in this group. |
string | HTML code. |
|
protectedinherited |
Output the list of <optgroup>s and <options>s that go inside the select.
This method should do the same as the JavaScript method user_selector.prototype.handle_response.
array | $groupedusers | an array, as returned by find_users. |
string | $search |
string | HTML code. |
|
inherited |
Convert a user object to a string suitable for displaying as an option in the list box.
object | $user | the user to display. |
string | a string representation of the user. |
Reimplemented in group_non_members_selector.
|
protectedinherited |
Returns SQL to select required fields.
string | $u | the table alias for the user table in the query being built. May be ''. |
string | fragment of SQL to go in the select list of the query. |
coding_exception | if used when includecustomfields is true |
|
protectedinherited |
Returns the string to use for the search button caption.
string | the caption for the search button. |
|
protectedinherited |
Returns an array with SQL to perform a search and the params that go into it.
string | $search | the text to search for. |
string | $u | the table alias for the user table in the query being built. May be ''. |
array | an array with two elements, a fragment of SQL to go in the where clause the query, and an array containing any required parameters. this uses ? style placeholders. |
mod_forum_potential_subscriber_selector::set_existing_subscribers | ( | array | $users | ) |
Sets the existing subscribers.
array | $users |
|
inherited |
Set the user fields that are displayed in the selector in addition to the user's name.
array | $fields | a list of field names that exist in the user table. |
|
inherited |
Whether this control will allow selection of many, or just one user.
boolean | $multiselect | true = allow multiple selection. |
|
inherited |
The height this control will be displayed, in rows.
integer | $numrows | the desired height. |
|
protectedinherited |
Used to generate a nice message when there are too many users to show.
The message includes the number of users that currently match, and the text of the message depends on whether the search term is non-blank.
string | $search | the search term, as passed in to the find users method. |
int | $count | the number of users that currently match. |
array | in the right format to return from the find_users method. |
|
staticprotectedinherited |
JavaScript YUI3 Module definition.