Elgg
Version 2.3
|
Go to the source code of this file.
Functions | |
row_to_elggrelationship ($row) | |
Convert a database row to a new . More... | |
system_messages ($message=null, $register="success", $count=false) | |
Queues a message to be displayed. More... | |
_elgg_delete_river (array $options=[]) | |
Alias of elgg_delete_river() that doesn't raise notices. More... | |
elgg_delete_river (array $options=array()) | |
Delete river items. More... | |
_elgg_delete_river | ( | array | $options = [] | ) |
Alias of elgg_delete_river() that doesn't raise notices.
array | $options | Options for elgg_delete_river() |
Definition at line 75 of file deprecated-2.1.php.
elgg_delete_river | ( | array | $options = array() | ) |
Delete river items.
array | $options | Parameters: ids => INT|ARR River item id(s) subject_guids => INT|ARR Subject guid(s) object_guids => INT|ARR Object guid(s) target_guids => INT|ARR Target guid(s) annotation_ids => INT|ARR The identifier of the annotation(s) action_types => STR|ARR The river action type(s) identifier views => STR|ARR River view(s) |
types => STR|ARR Entity type string(s) subtypes => STR|ARR Entity subtype string(s) type_subtype_pairs => ARR Array of type => subtype pairs where subtype can be an array of subtype strings
posted_time_lower => INT The lower bound on the time posted posted_time_upper => INT The upper bound on the time posted
Definition at line 106 of file deprecated-2.1.php.
row_to_elggrelationship | ( | $row | ) |
Convert a database row to a new .
\stdClass | $row | Database row from the relationship table |
Definition at line 11 of file deprecated-2.1.php.
system_messages | ( | $message = null , |
|
$register = "success" , |
|||
$count = false |
|||
) |
Queues a message to be displayed.
Messages will not be displayed immediately, but are stored in for later display, usually upon next page load.
The method of displaying these messages differs depending upon plugins and viewtypes. The core default viewtype retrieves messages in views/default/page/shells/default.php and displays messages as javascript popups.
mixed | $message | Optionally, a single message or array of messages to add, (default: null) |
string | $register | Types of message: "error", "success" (default: success) |
bool | $count | Count the number of messages (default: false) |
Definition at line 43 of file deprecated-2.1.php.