Lines Matching refs:map
171 // read redirect map
172 $map = $this->loadHelper($this->getPluginName());
173 if (empty($map)) return false;
182 if (isset($map->pattern[$checkID])) {
183 $dest = $map->pattern[$checkID]['destination'];
188 $status = $map->pattern[$checkID]['status'];
207 $redirect = $this->_RedirectMatch($ID, $map);
231 // read redirect map
232 $map = $this->loadHelper($this->getPluginName());
233 if (empty($map)) return false;
243 if (isset($map->pattern[$checkID])) {
244 $dest = $map->pattern[$checkID]['destination'];
249 $status = $map->pattern[$checkID]['status'];
269 $redirect = $this->_RedirectMatch($checkID, $map);
288 * using rediraction pattern map config file
293 * @param array $map redirect map
296 protected function _RedirectMatch( $checkID, $map )
298 foreach ($map->pattern as $pattern => $data) {