Home
last modified time | relevance | path

Searched refs:type (Results 26 – 50 of 101) sorted by path

12345

/dokuwiki/inc/Ui/
H A DMediaDiff.php43 $this->preference['difftype'] = 'both'; // diff view type: both, opacity or portions
66 // requested diff view type
110 // adjust requested diff view type
139 // print form to choose diff view type
162 * Print form to choose diff view type
200 // diff view type: opacity or portions
201 $type = $this->preference['difftype'];
219 echo '<div class="imageDiff ' . $type . '">';
/dokuwiki/inc/
H A Dchangelog.php39 * @param String $type Type of the change see DOKU_CHANGE_TYPE_*
55 $type = DOKU_CHANGE_TYPE_EDIT,
83 'type' => $type,
105 * @param String $type Type of the change see DOKU_CHANGE_TYPE_*
116 $type = DOKU_CHANGE_TYPE_EDIT,
140 'type' => $type,
340 if ($recent['type'] !== DOKU_CHANGE_TYPE_CREATE && ($flags & RECENTS_ONLY_CREATION)) return false;
343 if ($recent['type']
48 addLogEntry($date, $id, $type = DOKU_CHANGE_TYPE_EDIT, $summary = '', $extra = '', $flags = null, $sizechange = null) global() argument
109 addMediaLogEntry($date, $id, $type = DOKU_CHANGE_TYPE_EDIT, $summary = '', $extra = '', $flags = null, $sizechange = null) global() argument
[all...]
H A Dcommon.php149 $ret = '<div class="no"><input type="hidden" name="sectok" value="' . getSecurityToken() . '" /></div>' . "\n";
291 // Use $INFO['meta']['last_change']['type']===DOKU_CHANGE_TYPE_MINOR_EDIT in place of $info['minor'].
1777 * @param string $type - type of image 'badge' or 'button'
1780 function license_img($type)
1787 $try[] = 'lib/images/license/' . $type . '/' . $conf['license'] . '.png';
1788 $try[] = 'lib/images/license/' . $type . '/' . $conf['license'] . '.gif';
1790 $try[] = 'lib/images/license/' . $type . '/cc.png';
2031 $content = preg_replace('/<!DOCTYPE .*?>/i', '', $content); // doc type
1753 license_img($type) global() argument
H A Dconfutils.php300 * @param string $type the configuration settings to be read, must correspond to a key/array in $config_cascade
310 function retrieveConfig($type, $fn, $params = null, $combine = 'array_merge')
317 if (!is_array($config_cascade[$type])) trigger_error('Missing config cascade for "' . $type . '"', E_USER_WARNING);
319 if (empty($config_cascade[$type][$config_group])) continue;
320 foreach ($config_cascade[$type][$config_group] as $file) {
336 * @param string $type the configuration settings to be read, must correspond to a key/array in $config_cascade
339 function getConfigFiles($type)
344 if (!is_array($config_cascade[$type])) trigger_error('Missing config cascade for "' . $type
299 retrieveConfig($type, $fn, $params = null, $combine = 'array_merge') global() argument
327 getConfigFiles($type) global() argument
[all...]
H A Ddeprecated.php718 public function __construct($data, $type = null)
721 parent::__construct($data, $type);
716 __construct($data, $type = null) global() argument
H A Dform.php19 * When printed, the form class calls functions named 'form_$type' for each
62 * @param bool|string $enctype (optional, deprecated) Encoding type of the data
192 * Gets the position of the first of a type of element.
194 * @param string $type Element type to look for.
199 public function findElementByType($type) argument
202 if (is_array($elem) && $elem['_elem'] == $type)
271 * 'form_$type'. The function should return the HTML to be printed.
416 * @param string $type Type attribute. 'submit' or 'cancel'
424 function form_makeButton($type,
421 form_makeButton($type, $act, $value = '', $attrs = array()) global() argument
450 form_makeField($type, $name, $value = '', $label = null, $id = '', $class = '', $attrs = array()) global() argument
476 form_makeFieldRight($type, $name, $value = '', $label = null, $id = '', $class = '', $attrs = array()) global() argument
[all...]
H A Dhtml.php227 $html .= '<input type="hidden" name="' . $key . '" value="' . hsc($val) . '" />';
233 $html .= '<button type="submit" ';
557 * @param string $type type of the diff (inline or sidebyside)
560 function html_diff($text = '', $intro = true, $type = null)
566 'difftype' => $type,
574 * @param string $type inline vs sidebyside
580 function html_diff_navigation($pagelog, $type, $l_rev, $r_rev)
589 * @param string $difftype display type
880 'type'
532 html_diff($text = '', $intro = true, $type = null) global() argument
551 html_diff_navigation($pagelog, $type, $l_rev, $r_rev) global() argument
[all...]
H A Dinfoutils.php76 * Return DokuWiki's version (split up in date and type)
87 $version['type'] = 'Release';
89 $version['type'] = 'Git';
141 $version['type'] = 'snapshot?';
149 * This returns the version in the form "Type Date (SHA)". Where type is either
164 return $version['type'] . ' ' . $version['date'] . $sha;
540 $function = $call['class'] . $call['type'] . $call['function'];
H A Dmedia.php210 $form->addButton('mediado[save]', $lang['btn_save'])->attr('type', 'submit')
532 * @param string $imime mime type
688 * @param string $mime mime type
880 $form->addButton('', $lang['btn_apply'])->attr('type', 'submit');
888 * Returns type of sorting for the list of files in media manager
892 * @return string - sort type
900 * Returns type of listing for the list of files in media manager
904 * @return string - list type
1133 $form->addButton('', $lang['btn_delete'])->attr('type', 'submit');
1148 $form->addButton('', $lang['media_update'])->attr('type', 'submi
1292 media_image_diff($image, $l_rev, $r_rev, $l_size, $r_size, $type) global() argument
2100 media_supportedav($mime, $type = NULL) global() argument
[all...]
H A Dpluginutils.php27 * @param string $type type of plugins; empty string for all
31 function plugin_list($type = '', $all = false)
35 $plugins = $plugin_controller->getList($type, $all);
45 * @param $type string type of plugin to load
51 function plugin_load($type, $name, $new = false, $disabled = false)
55 return $plugin_controller->load($type, $name, $new, $disabled);
30 plugin_list($type = '', $all = false) global() argument
50 plugin_load($type, $name, $new = false, $disabled = false) global() argument
H A Dsearch.php85 * string $type - Type either 'd' for directory or 'f' for file
94 * one deeper nested) also make sure to check the file type (for example
106 * @param string $type
112 function search_qsearch(&$data, $base, $file, $type, $lvl, $opts)
119 return search_universal($data, $base, $file, $type, $lvl, $opts);
132 * @param string $type
138 function search_index(&$data, $base, $file, $type, $lvl, $opts)
151 return search_universal($data, $base, $file, $type, $lvl, $opts);
162 * @param string $type argument
168 function search_namespaces(&$data, $base, $file, $type,
108 search_qsearch(& $data, $base, $file, $type, $lvl, $opts) global() argument
133 search_index(& $data, $base, $file, $type, $lvl, $opts) global() argument
188 search_media(& $data, $base, $file, $type, $lvl, $opts) global() argument
255 search_mediafiles(& $data, $base, $file, $type, $lvl, $opts) global() argument
302 search_list(& $data, $base, $file, $type, $lvl, $opts) global() argument
333 search_pagename(& $data, $base, $file, $type, $lvl, $opts) global() argument
371 search_allpages(& $data, $base, $file, $type, $lvl, $opts) global() argument
487 search_universal(& $data, $base, $file, $type, $lvl, $opts) global() argument
[all...]
H A Dtemplate.php254 'type' => 'application/opensearchdescription+xml',
290 'type' => 'application/rss+xml',
296 'type' => 'application/rss+xml',
312 'type' => 'application/rss+xml',
321 'type' => 'text/html',
330 'type' => 'text/plain',
539 * @param string $type
547 function tpl_button($type, $return = false)
550 $data = tpl_get_action($type);
566 $out = html_btn($type,
485 tpl_button($type, $return = false) global() argument
525 tpl_actionlink($type, $pre = '', $suf = '', $inner = '', $return = false) global() argument
581 tpl_get_action($type) global() argument
639 tpl_action($type, $link = false, $wrapper = false, $return = false, $pre = '', $suf = '', $inner = '') global() argument
[all...]
/dokuwiki/inc/lang/fr/
H A Dstopwords.txt3 # Les fins de ligne de ce fichier doivent être de type UNIX
/dokuwiki/inc/lang/nl/
H A Duploadmail.txt10 MIME type: @MIME@
/dokuwiki/inc/lang/no/
H A Duploadmail.txt10 MIME-type : @MIME@
/dokuwiki/inc/parser/
H A Dhandler.php655 * @param string $type either 'code' or 'file'
658 public function code($match, $state, $pos, $type = 'code')
676 $this->addCall($type, $param, $pos);
926 $p['type'],
1146 'type' => $call,
628 code($match, $state, $pos, $type = 'code') global() argument
H A Dxhtml.php647 * @param string $type code|file
654 public function _highlight($type, $text, $language = null, $filename = null, $options = null)
672 $this->doc .= '<dl class="' . $type . '">' . DOKU_LF;
691 $this->doc .= '<pre class="' . $type . '">' . $this->_xmlEntities($text) . '</pre>' . DOKU_LF;
694 if ($type != 'code') $class .= ' ' . $type;
875 * @param string $linktype type to set use of headings
1849 if ($img['type'] == 'internalmedia') {
1957 $out .= '<source src="' . hsc($url) . '" type="' . $mime . '" />' . NL;
2025 $out .= '<source src="' . hsc($url) . '" type
603 _highlight($type, $text, $language = null, $filename = null, $options = null) global() argument
[all...]
/dokuwiki/lib/exe/
H A Dcss.php44 $type = 'feed';
47 $type = '';
121 $type,
142 // Check if there is a wrapper set for this type.
298 * @param string $mediatype type ofthe current media files/content set
/dokuwiki/lib/plugins/acl/
H A Dstyle.css21 list-style-type: none;
/dokuwiki/lib/plugins/authad/adLDAP/classes/
H A DadLDAPFolders.php76 * @param string $dnType The type of record to list. This can be ADLDAP_FOLDER or ADLDAP_CONTAINER.
78 * @param bool $type Specify a type of object to search for
81 public function listing($folderName = NULL, $dnType = adLDAP::ADLDAP_FOLDER, $recursive = NULL, $type = NULL) argument
87 if ($type !== NULL) {
88 switch ($type) {
/dokuwiki/lib/plugins/config/core/
H A DLoader.php198 * @param string $type should be 'plugin' or 'tpl'
202 protected function loadExtensionMeta($file, $type, $extname)
205 $prefix = $type . Configuration::KEYMARKER . $extname . Configuration::KEYMARKER;
214 $data[$prefix . $type . '_settings_name'] = ['fieldset'];
229 * @param string $type should be 'plugin' or 'tpl'
233 protected function loadExtensionConf($file, $type, $extname)
236 $prefix = $type . Configuration::KEYMARKER . $extname . Configuration::KEYMARKER;
255 * @param string $type should be 'plugin' or 'tpl'
259 protected function loadExtensionLang($dir, $type, $extname)
263 $prefix = $type
195 loadExtensionMeta($file, $type, $extname) global() argument
225 loadExtensionConf($file, $type, $extname) global() argument
250 loadExtensionLang($dir, $type, $extname) global() argument
[all...]
/dokuwiki/lib/plugins/extension/helper/
H A Dextension.php563 * Get the extension type(s)
565 * @return array The type(s) as array of strings
611 * The type of extension installation
799 foreach (PluginController::PLUGIN_TYPES as $type) {
800 if (file_exists($path . $type . '.php')) {
801 $plugin = plugin_load($type, $this->base);
805 if ($dh = @opendir($path . $type . '/')) {
809 $plugin = plugin_load($type, $this->base . '_' . substr($cp, 0, -4));
1043 if ($item['type'] == 'template') {
1075 if ($item['type']
[all...]
/dokuwiki/lib/plugins/extension/
H A Dscript.js135 var $input = jQuery( '<input />', { type: 'checkbox', name: chkName })
/dokuwiki/lib/plugins/info/
H A Dsyntax.php125 * @param string $type
128 protected function renderPlugins($type, Doku_Renderer $renderer)
131 $plugins = plugin_list($type);
136 $po = plugin_load($type, $p);
198 foreach ($method['params'] as $desc => $type) {
199 $params[] = hsc($desc) . '</td><td>' . hsc($type);
335 'type' => 'ul',
126 renderPlugins($type, Doku_Renderer $renderer) global() argument
/dokuwiki/lib/plugins/popularity/
H A Dhelper.php285 * @param string $type Type either 'd' for directory or 'f' for file
290 public function searchCountCallback(&$data, $base, $file, $type, $lvl, $opts)
293 if ($type == 'd') {
289 searchCountCallback(& $data, $base, $file, $type, $lvl, $opts) global() argument

12345