Lines Matching refs:type

254             '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, $id, $accesskey, $params, $method);
577 * @param string $type action command
588 function tpl_actionlink($type, $pre = '', $suf = '', $inner = '', $return = false)
592 $data = tpl_get_action($type);
612 $caption = $lang['btn_' . $type];
626 'class="action ' . $type . '" ' .
640 * @param string $type
648 function tpl_get_action($type)
651 if ($type == 'history') $type = 'revisions';
652 if ($type == 'subscription') $type = 'subscribe';
653 if ($type == 'img_backto') $type = 'imgBackto';
655 $class = '\\dokuwiki\\Menu\\Item\\' . ucfirst($type);
669 'type' => $type,
672 'params' => ['do' => $type],
683 $data = '[unknown %s type]';
695 * @param string $type action command
707 function tpl_action($type, $link = false, $wrapper = false, $return = false, $pre = '', $suf = '', $inner = '')
712 $out .= tpl_actionlink($type, $pre, $suf, $inner, true);
714 $out .= tpl_button($type, true);
771 'type' => 'submit',
1123 if ($tag['type'] == 'date') {
1138 * - string type type of value
1161 $tags[] = ['langkey' => $tag[1], 'type' => $tag[2], 'value' => $value];
1822 foreach ($types as $type) {
1823 switch ($type) {
1835 $return .= '<link rel="icon" href="' . tpl_getMediaFile($look) . '" type="image/svg+xml" />' . NL;