Lines Matching refs:title
15 protected $title; variable in dokuwiki\\plugin\\gallery\\classes\\Image
42 $this->title = $jpegMeta->getField('Simple.Title');
85 if (empty($this->title) || $this->title == $this->filename) {
86 $title = str_replace('_', ' ', $this->filename);
87 $title = preg_replace(self::IMG_REGEX, '', $title);
88 $title = PhpString::ucwords($title);
89 return $title;
91 return $this->title;
95 * @param string $title
97 public function setTitle($title) argument
99 $this->title = $title;