Home
last modified time | relevance | path

Searched refs:class (Results 1 – 25 of 100) sorted by path

1234

/dokuwiki/bin/
H A Dplugin.php15 class PluginCLI extends CLI
101 $class = "cli_plugin_$name";
102 if (class_exists($class)) {
103 return new $class();
/dokuwiki/data/
H A Ddeleted.files97 inc/PassHash.class.php
102 inc/Input.class.php
111 inc/plugincontroller.class.php
214 lib/plugins/config/settings/config.class.php
215 lib/plugins/config/settings/extra.class.php
224 inc/feedcreator.class.php
234 inc/Tar.class.php
235 inc/ZipLib.class.php
255 inc/TarLib.class.php
490 lib/plugins/plugin/classes/ap_delete.class
[all...]
/dokuwiki/data/pages/wiki/
H A Dsyntax.txt410 * The HelloWorldApp class implements an application that
413 class HelloWorldApp {
/dokuwiki/inc/
H A DActionRouter.php17 class ActionRouter
70 * Instantiates the right class, runs permission checks and pre-processing and
170 * This translates the given name to a class name by uppercasing the first letter.
172 * parts are removed beginning from the end until a matching class is found. The instatiated
187 $class = 'dokuwiki\\Action\\' . str_replace('_', '', ucwords($load, '_'));
188 if (class_exists($class)) {
189 return new $class($actionname);
H A Dform.php19 * When printed, the form class calls functions named 'form_$type' for each
29 * Please note that even though this class is technically deprecated (use dokuwiki\Form instead),
36 class Doku_Form
282 $form .= '<form ' . buildAttributes($this->params, false) . '><div class="no">' . DOKU_LF;
405 'class' => 'edit', 'cols' => '80', 'rows' => '10');
444 * @param string $class Class attribute of the label. If this is 'block',
454 function form_makeField($type, $name, $value = '', $label = null, $id = '', $class = '', $attrs = array())
457 $elem = array('_elem' => 'field', '_text' => $label, '_class' => $class,
476 * @param string $class argument
481 function form_makeFieldRight($type, $name, $value = '', $label = null, $id = '', $class
450 form_makeField($type, $name, $value = '', $label = null, $id = '', $class = '', $attrs = array()) global() argument
500 form_makeTextField($name, $value = '', $label = null, $id = '', $class = '', $attrs = array()) global() argument
524 form_makePasswordField($name, $label = null, $id = '', $class = '', $attrs = array()) global() argument
547 form_makeFileField($name, $label = null, $id = '', $class = '', $attrs = array()) global() argument
573 form_makeCheckboxField($name, $value = '1', $label = null, $id = '', $class = '', $attrs = array()) global() argument
598 form_makeRadioField($name, $value = '1', $label = null, $id = '', $class = '', $attrs = array()) global() argument
630 form_makeMenuField($name, $values, $selected = '', $label = null, $id = '', $class = '', $attrs = array()) global() argument
676 form_makeListboxField($name, $values, $selected = '', $label = null, $id = '', $class = '', $attrs = array()) global() argument
[all...]
H A Dhtml.php67 dbg_deprecated(Login::class . '::show()');
79 dbg_deprecated(Denied::class . '::showBanner()');
163 $html = '<div class="secedit editbutton_' . $data['target'] . ' editbutton_' . $secid . '">';
180 return '<a class="nolink" href="#dokuwiki__top">'
181 . '<button class="button" onclick="window.scrollTo(0, 0)" title="' . $lang['btn_top'] . '">'
223 $html = '<form class="button btn_' . $name . '" method="' . $method . '" action="' . $script . '"><div class="no">';
257 dbg_deprecated(PageView::class . '::showrev()');
270 dbg_deprecated(PageView::class . '::show()');
282 dbg_deprecated(PageDraft::class
428 html_buildlist($data, $class, $func, $lifunc = null, $forcewrapper = false) global() argument
[all...]
H A Dmedia.php47 echo '<div class="search_result">';
48 echo '<span class="mediaref_ref">' . hsc($row) . '</span>';
53 echo '<div class="mediaref_hidden">' . $lang['ref_hidden'] . '</div>';
157 echo '<div class="nothing">' . $lang['media_perm_upload'] . '</div>' . DOKU_LF;
175 'class' => 'meta'
190 'class' => 'edit',
200 )->id($p['id'])->addClass($p['class'])->val($value);
204 ->addClass($p['class'])
722 echo '<div class="nothing">' . $lang['nothingfound'] . '</div>' . NL;
742 echo '<div class
[all...]
/dokuwiki/inc/ChangeLog/
H A DRevisionInfo.php15 class RevisionInfo
116 return '<img class="icon" src="' . DOKU_BASE . 'lib/images/fileicons/file.png" alt="' . $id . '" />';
135 return '<span class="date">' . $formatted . '</span>';
146 return '<span class="sum">' . ' – ' . hsc($this->val('sum')) . '</span>';
165 return '<span class="user">' . $html . '</span>';
196 $class = 'wikilink1';
199 $class = 'wikilink2';
205 $class = 'wikilink2';
207 return '<a href="' . $href . '" class="' . $class
[all...]
/dokuwiki/inc/Debug/
H A DDebugHelper.php9 class DebugHelper
71 if (!empty($call['class'])) {
72 $thing .= $call['class'] . '::';
84 * @param string $class The class with the deprecated property
89 public static function dbgDeprecatedProperty($class, $propertyName)
96 $caller = trim($call['class'] . '::' . $call['function'] . '()', ':');
97 $qualifiedName = $class . '::$' . $propertyName;
83 dbgDeprecatedProperty($class, $propertyName) global() argument
H A DPropertyDeprecationHelper.php19 * class Foo {
36 * List of deprecated properties, in <property name> => <class> format
37 * where <class> is the the name of the class defining the property
49 * @param null $class name of the class defining the property
54 $class = null
56 $this->deprecatedPublicProperties[$property] = $class ?: get_class($this);
62 $class = $this->deprecatedPublicProperties[$name];
63 DebugHelper::dbgDeprecatedProperty($class,
55 deprecatePublicProperty($property, $class = null) global() argument
[all...]
/dokuwiki/inc/Extension/
H A DPluginController.php13 class PluginController
94 $class = $type . '_plugin_' . $name;
100 return class_exists($class, true) ? new $class() : null;
106 //construct class and instantiate
107 if (!class_exists($class, true)) {
130 $DOKU_PLUGINS[$type][$name] = new $class();
H A DPluginInterface.php32 * The type of the plugin inferred from the class name
39 * The name of the plugin inferred from the class name
46 * The component part of the plugin inferred from the class name
124 * @param string $class
128 public function email($email, $name = '', $class = '', $more = ''); argument
136 * @param string $class
141 public function external_link($link, $title = '', $class = '', $target = '', $more = ''); argument
H A DPluginTrait.php22 $class = get_class($this);
23 $parts = sexplode('_', $class, 3);
30 // class like action_plugin_myplugin_ajax belongs to plugin 'myplugin'
243 public function email($email, $name = '', $class = '', $more = '')
248 $class = "class='" . ($class ?: 'mail') . "'";
249 return "<a href='mailto:$email' $class title='$email' $more>$name</a>";
255 public function external_link($link, $title = '', $class = '', $target = '', $more = '')
264 if ($class)
219 email($email, $name = '', $class = '', $more = '') global() argument
231 external_link($link, $title = '', $class = '', $target = '', $more = '') global() argument
[all...]
/dokuwiki/inc/Form/
H A DElement.php12 abstract class Element
107 * Adds a class to the class attribute
109 * This is the preferred method of setting the element's class
111 * @param string $class the new class to add
114 public function addClass($class) argument
116 $classes = explode(' ', $this->attr('class'));
117 $classes[] = $class;
120 $this->attr('class', implod
[all...]
H A DInputElement.php8 * Base class for all input elements. Uses a wrapping label when label
14 class InputElement extends Element
77 * Adds a class to the class attribute
79 * This is the preferred method of setting the element's class
81 * @param string $class the new class to add
84 public function addClass($class) argument
86 if ($this->label) $this->label->addClass($class);
87 return parent::addClass($class);
[all...]
H A DTagCloseElement.php13 class TagCloseElement extends ValueElement
27 * @param string $class
31 public function addClass($class) argument
/dokuwiki/inc/Menu/
H A DAbstractMenu.php15 abstract class AbstractMenu implements MenuInterface
57 foreach ($this->types as $class) {
59 $class = "\\dokuwiki\\Menu\\Item\\$class";
61 $item = new $class();
76 * @param string|false $classprefix create a class from type with this prefix, false for no class
85 $class = ' class="' . $classprefix . $item->getType() . '"';
87 $class
[all...]
/dokuwiki/inc/Ui/
H A DAdmin.php18 class Admin extends Ui
33 echo '<div class="ui-admin">';
55 $class = 'admin_plugins';
57 $class = 'admin_tasks';
60 echo "<ul class=\"$class\">";
106 echo '<li><div class="li">';
108 echo '<span class="icon">';
111 echo '<span class="prompt">';
H A DIndex.php10 class Index extends Ui
59 return '<div id="index__tree" class="index__tree">'
87 $html .= '<a href="' . $link . '" title="' . $item['id'] . '" class="idx_dir"' . $nofollow . '><strong>';
114 $class = '';
121 $class = ' bounce';
123 return '<li class="level' . $item['level'] . $class . '" ' . $id . '>';
125 return '<li class="open">';
127 return '<li class="closed">';
H A DMediaRevisions.php15 class MediaRevisions extends Revisions
64 'class' => 'changes',
76 $class = ($RevInfo->val('type') === DOKU_CHANGE_TYPE_MINOR_EDIT) ? 'minor' : '';
77 $form->addTagOpen('li')->addClass($class);
110 $form->addTagClose('div'); // close div class=no
H A DPageRevisions.php14 class PageRevisions extends Revisions
64 'class' => 'changes',
76 $class = ($RevInfo->val('type') === DOKU_CHANGE_TYPE_MINOR_EDIT) ? 'minor' : '';
77 $form->addTagOpen('li')->addClass($class);
109 $form->addTagClose('div'); // close div class=no
H A DRecent.php15 class Recent extends Ui
57 echo '<div class="level1"><p>'
63 $form = new Form(['id' => 'dw__recent', 'method' => 'GET', 'action' => wl($ID), 'class' => 'changes']);
82 $class = ($RevInfo->val('type') === DOKU_CHANGE_TYPE_MINOR_EDIT) ? 'minor' : '';
83 $form->addTagOpen('li')->addClass($class);
101 $form->addTagClose('div'); // close div class=no
186 $html = '<div class="pagenav">';
189 $html .= '<div class="pagenav-prev">';
191 . ' title="' . $lang['btn_newer'] . ' [N]" class="button show">'
197 $html .= '<div class
[all...]
H A DSearch.php10 class Search extends Ui
507 $html = '<div class="search_quickresult">';
509 $html .= '<ul class="search_quickhits">';
525 $html .= '<div class="clearer"></div>';
544 return '<div class="nothing">' . $lang['nothingfound'] . '</div>';
547 $html = '<div class="search_fulltextresult">';
550 $html .= '<dl class="search_results">';
568 $lastMod = '<span class="lastmod">' . $lang['lastmod'] . '</span> ';
575 $hits = '<span class="hits">' . $cnt . ' ' . $lang['hits'] . '</span>, ';
589 $html .= '<div class
[all...]
/dokuwiki/inc/Ui/Media/
H A DDisplayRow.php10 class DisplayRow extends DisplayTile
19 $class = 'select mediafile mf_' . $this->mediaFile->getIcoClass();
24 echo '<a id="h_:' . $id . '" class="' . $class . '">' .
27 echo '<span class="info">(' . $info . ')</span>' . NL;
32 'alt="' . $lang['mediaview'] . '" title="' . $lang['mediaview'] . '" class="btn" /></a>';
37 'alt="' . $lang['btn_media'] . '" title="' . $lang['btn_media'] . '" class="btn" /></a>';
43 echo ' <a href="' . $link . '" class="btn_media_delete" title="' . $id . '">' .
45 'title="' . $lang['btn_delete'] . '" class="btn" /></a>';
48 echo '<div class
[all...]
/dokuwiki/inc/parser/
H A Dxhtml.php18 class Doku_Renderer_xhtml extends Doku_Renderer
64 * @return string A marker class for the starting HTML element
152 $this->doc .= '<div class="footnotes">' . DOKU_LF;
158 $this->doc .= '<div class="fn">';
159 $this->doc .= '<sup><a href="#fnt__' . $id . '" id="fn__' . $id . '" class="fn_bot">';
167 $this->doc .= ', <sup><a href="#fnt__' . ($ref) . '" id="fn__' . ($ref) . '" class="fn_bot">';
172 $this->doc .= '<div class="content">' . $footnote . '</div>';
256 $header .= ' class="' . $this->startSectionEdit($pos, $data) . '"';
276 $this->doc .= '<div class="level' . $level . '">' . DOKU_LF;
366 $this->doc .= '<em class
[all...]

1234