Lines Matching full:maps
83 public $maps = array(); variable in action_plugin_mytemplate
122 // interpret and remove all maps and variable blocks
124 preg_match_all('/\[MAPS\](.*)?\[ENDMAPS\]/sm', $page, $mapblocks, PREG_SET_ORDER);
126 fill_map($mapblock[1], $this->maps);
127 // at this point, maps are stored as strings, we need to convert them
128 foreach(array_keys($this->maps) as $mapname) {
129 $list = explode(',', $this->maps[$mapname]);
139 $this->maps[$mapname] = $map;
301 if (array_key_exists($param1, $this->maps)) {
302 $value = $this->maps[$param1][$param2];
309 if (array_key_exists($param1, $this->maps)) {
310 $value = $this->do_lookrange($this->maps[$param1], $param2);