Lines Matching defs:array
52 * @return array
162 * @return array with info for a request of $id
211 * array.
213 * @return array with info about current document
332 * Return information about the current media item as an associative array.
334 * @return array with info about current media item
351 * @param array|object $params the data to encode
366 * @param array $params array with (attribute name-attribute value) pairs
390 * This builds the breadcrumb trail and returns it as array
392 * @return string[] with the data: array(pageid=>name, ... )
426 //remove ID from array
431 //add to array
493 * @param string|array $urlParameters URL parameters, associative array recommended
546 * @param string|array $urlParameters URL parameters, associative array recommended
588 * The $more parameter should always be given as array, the function then
592 * @param mixed $more string or array with additional parameters
704 * data['matches'] - array of matches
1092 * @param array $data array with event data
1350 * @return array|string
1858 * This function checks whether a specified value is set and in the array
1863 * @param array $valid_values A set of valid values; Optionally a default may
1865 * @param array $array The array containing the value (typically $_POST
1873 function valid_input_set($param, $valid_values, $array, $exc = '')
1875 if (isset($array[$param]) && in_array($array[$param], $valid_values)) {
1876 return $array[$param];