Searched refs:mapname (Results 1 – 4 of 4) sorted by relevance
| /plugin/imagemapping/ |
| D | syntax.php | 66 $mapname = str_replace(':', '', cleanID($img['title'])); 67 $mapname = ltrim($mapname, '0123456789._-'); 69 if (empty($mapname)) { 74 $mapname = preg_replace('!.*' . $nssep . '!', '', $src); 77 … $mapname = str_replace(':', '', cleanID($src['host'] . $src['path'] . $src['query'])); 78 $mapname = ltrim($mapname, '0123456789._-'); 80 if (empty($mapname)) { 81 $mapname = 'imagemap' . $pos; 84 $args = [$state, $img['type'], $img['src'], $img['title'], $mapname, 88 $ReWriter = new ImageMapHandler($mapname, $handler->getCallWriter());
|
| D | ImageMapHandler.php | 19 private $mapname; variable in dokuwiki\\plugin\\imagemapping\\ImageMapHandler 26 public function __construct($mapname, CallWriterInterface $CallWriter) argument 28 $this->mapname = $mapname;
|
| /plugin/imagemap/ |
| D | syntax.php | 41 $mapname = str_replace(':','',cleanID($img['title'])); 42 $mapname = ltrim($mapname, '0123456789._-'); 44 if (empty($mapname)) { 49 $mapname = preg_replace('!.*'.$nssep.'!','',$src); 52 $mapname = str_replace(':','',cleanID($src['host'].$src['path'].$src['query'])); 53 $mapname = ltrim($mapname, '0123456789._-'); 55 if (empty($mapname)) { 56 $mapname = 'imagemap'.$pos; 59 $args = array($state, $img['type'], $img['src'], $img['title'], $mapname, 63 $ReWriter =& new ImageMap_Handler($mapname, $handler->CallWriter); [all …]
|
| /plugin/mytemplate/ |
| D | action.php | 128 foreach(array_keys($this->maps) as $mapname) { 129 $list = explode(',', $this->maps[$mapname]); 139 $this->maps[$mapname] = $map;
|