Lines Matching refs:found

48 		if (preg_match('/-'.$option.' /i', $match, $found)) {
50 $match = str_replace($found[0], '', $match);
54 if (preg_match('/-'.$option.':('.implode('|',array_keys($varAssoc)).') /i', $match, $found)) {
55 $varAffected = $varAssoc[$found[1]];
56 $match = str_replace($found[0], '', $match);
102 if (preg_match("/-expandButton:([0-9]+)/i", $match, $found)) {
103 $data['expand'] = intval($found[1]);
104 $match = str_replace($found[0], '', $match);
119 for ($found; preg_match("/-(exclu(page|ns|nsall|nspages|nsns)!?):\"([^\\/\"]+)\" /i", $match, $found); ) {
120 $option = strtolower($found[1]);
123 $data[substr($option,0,-1)][] = array('regex' => $found[3], 'neg' => true);
125 $data[$option][] = array('regex' => $found[3], 'neg' => false);
127 $match = str_replace($found[0], '', $match);
129 for ($found; preg_match("/-(exclu(page|ns|nsall|nspages|nsns)) /i", $match, $found); ) {
130 $data[strtolower($found[1])] = true;
131 $match = str_replace($found[0], '', $match);
139 for ($found; preg_match("/-exclude:\\{([^\\}]*)\\} /", $match, $found); ) {
140 $list = explode(' ', $found[1]);
142 $match = str_replace($found[0], '', $match);
146 if (preg_match("/-maxDepth:([0-9]+)/i", $match, $found)) {
147 $data['maxdepth'] = intval($found[1]);
148 $match = str_replace($found[0], '', $match);
152 if (preg_match("/-columns:([0-9]+)/i", $match, $found)) {
153 $data['columns'] = intval($found[1]);
154 $match = str_replace($found[0], '', $match);
162 if (preg_match("/-(h[1-5])/i", $match, $found)) {
163 $data['hn'] = $found[1];
164 $match = str_replace($found[0], '', $match);
166 if (preg_match("/-titleHead:\"([^\"]*)\"/i", $match, $found)) {
167 $data['headTitle'] = $found[1];
168 $match = str_replace($found[0], '', $match);
188 for ($found; preg_match("/ (-.*)/", $match, $found); ) {
189 msg(sprintf($this->getLang('unknownoption'), htmlspecialchars($found[1])), -1);
190 $match = str_replace($found[0], '', $match);
286 * the tree walking. Moreover, $data['tree'] is filled by the pages found by _walk_recurse(), and
355 * where found children are added. Optionally sorts this list of children.
358 * namespace IDs where an index has been found.