Lines Matching defs:array
51 * @return array
161 * @return array with info for a request of $id
210 * array.
212 * @return array with info about current document
331 * Return information about the current media item as an associative array.
333 * @return array with info about current media item
349 * @param array $params array with key-value pairs
374 * @param array $params array with (attribute name-attribute value) pairs
398 * This builds the breadcrumb trail and returns it as array
400 * @return string[] with the data: array(pageid=>name, ... )
434 //remove ID from array
439 //add to array
501 * @param string|array $urlParameters URL parameters, associative array recommended
554 * @param string|array $urlParameters URL parameters, associative array recommended
596 * The $more parameter should always be given as array, the function then
600 * @param mixed $more string or array with additional parameters
712 * data['matches'] - array of matches
1126 * @param array $data array with event data
1384 * @return array|string
1892 * This function checks whether a specified value is set and in the array
1897 * @param array $valid_values A set of valid values; Optionally a default may
1899 * @param array $array The array containing the value (typically $_POST
1907 function valid_input_set($param, $valid_values, $array, $exc = '')
1909 if (isset($array[$param]) && in_array($array[$param], $valid_values)) {
1910 return $array[$param];