Lines Matching defs:name

111     protected function setStyle($name, $value)
114 $this->styles[$ID][$name] = $value;
116 protected function getStyle($name)
119 return isset($this->styles[$ID][$name]) ? $this->styles[$ID][$name] : $this->getConfStyles($name);
121 protected function hasStyle($name)
124 return (array_key_exists($ID, $this->styles) && is_array($this->styles[$ID]) && array_key_exists($name, $this->styles[$ID]))
125 || $this->getConfStyles($name) ? true : false;
127 protected function getConfStyles($name = null)
158 if ($name) {
159 if (!isset($this->confStyles[$name]))
162 return $this->confStyles[$name];
169 protected function setTarget($name, $value)
172 $this->targets[$ID][$name] = $value;
174 protected function getTarget($name)
177 return $this->targets[$ID][$name];
179 protected function hasTarget($name)
182 return (array_key_exists($ID, $this->targets) && is_array($this->targets[$ID]) && array_key_exists($name, $this->targets[$ID])) ? true : false;
263 $link['name'] = $match['title'];
264 if ($link['name'] == "")
265 $link['name'] = $match['link'];
278 $link['name'] = str_replace('\\\\', '<br />', $link['name']); //textbreak support
282 $image = "<span class='plugin_button_image'>" . $image['name'] . "</span>";
286 $text .= $link['name'];
345 function dokuwiki_get_link(&$xhtml, $id, $name = NULL)
352 return $this->internallink($xhtml, $id, $name);
358 return $this->internalmedia($xhtml, $id, $name);
360 return $this->internallink($xhtml, $id, $name);
365 // Should use wl instead (from commons), but this won't do the trick for the name
366 function internallink(&$xhtml, $id, $name = NULL, $search = NULL, $returnonly = false, $linktype = 'content')
394 // default name is based on $id as given
401 $name = $xhtml->_getLinkTitle($name, $default, $isImage, $id, $linktype);
433 $link['name'] = $name;
507 //if ($linking == 'nolink' || $noLink) $this->doc .= $link['name'];