Lines Matching defs:search
869 * $search,$returnonly & $linktype are not for the renderer but are used
874 * @param string|null $search adds search url param
880 public function internallink($id, $name = null, $search = null, $returnonly = false, $linktype = 'content')
938 //add search string
939 if ($search) {
941 if (is_array($search)) {
942 $search = array_map('rawurlencode', $search);
943 $link['url'] .= 's[]=' . implode('&s[]=', $search);
945 $link['url'] .= 's=' . rawurlencode($search);