Lines Matching refs:class

14 class helper_plugin_extension_list extends Plugin
35 $this->form .= '<ul class="extensionList">';
81 $this->form .= '<div class="no">';
102 $this->form .= '<li class="notfound">' . $lang['nothingfound'] . '</li>';
124 '" class="' . $this->makeClass($extension) . '">';
128 * Add a column with the given class and content
129 * @param string $class The class name
132 private function populateColumn($class, $html)
134 $this->form .= '<div class="' . $class . ' col">' . $html . '</div>' . DOKU_LF;
163 'class' => ($linktype == 'extern') ? 'urlextern' : 'interwiki iw_doku',
176 * Generate the class name for the row of the extension
179 * @return string The class name
183 $class = ($extension->isTemplate()) ? 'template' : 'plugin';
185 $class .= ' installed';
186 $class .= ($extension->isEnabled()) ? ' enabled' : ' disabled';
187 if ($extension->updateAvailable()) $class .= ' updatable';
189 if (!$extension->canModify()) $class .= ' notselect';
190 if ($extension->isProtected()) $class .= ' protected';
191 //if($this->showinfo) $class.= ' showinfo';
192 return $class;
207 $html = '<a href="' . $url . '" class="author" title="' . $this->getLang('author_hint') . '" >' .
212 $html = '<span class="author">' . hsc($extension->getAuthor()) . '</span>';
216 $html = '<em class="author">' . $this->getLang('unknown_author') . '</em>' . DOKU_LF;
238 $img = '<a href="' . hsc($screen) . '" target="_blank" class="extension_screenshot">' .
248 $html = '<div class="screenshot" >' . $img . '<span></span></div>' . DOKU_LF;
275 $html .= '<div class="popularity" title="' . $popularityText . '">' .
277 '<span class="a11y">' . $popularityText . '</span>' .
291 $class = 'close';
294 $class = '';
297 '" class="info ' . $class . '" title="' . $this->getLang('btn_info') .
317 $html = '<div class="linkbar">';
330 'class' => 'bugs',
342 $html .= ' <span class="tags">' . $this->getLang('tags') . ' ';
369 $html .= '<div class="msg error">' .
377 $html .= '<div class="msg error">' .
386 $html .= '<div class="msg error">' .
391 $html .= '<div class="msg notify">' .
396 $html .= '<div class="msg notify">' .
401 $html .= '<div class="msg notify">' .
406 $html .= '<div class="msg notify">' .
436 $html = '<a href="' . hsc($url) . '" class="urlextern">' . hsc($name) . '</a>';
449 $html = '<dl class="details">';
457 $html .= '<a href="' . $extension->getDonationURL() . '" class="donate">' .
585 $errors .= '<p class="permerror">' . $this->getLang($canmod) . '</p>';
595 $errors .= '<p class="permerror">' . $this->getLang('git') . '</p>';
602 $errors .= '<p class="permerror">' . $this->getLang('auth') . '</p>';
609 $errors .= '<div class="permerror">' . $this->getLang($canmod) . '</div>';
613 $html .= ' <span class="version">' . $this->getLang('available_version') . ' ';
640 $html = '<button class="' . $classes . '" name="' . $name . '" type="submit" ' . $title . '>' .