Lines Matching +full:update +full:- +full:user +full:- +full:login -(+path:inc +path:lang) -(+path:lib +path:plugins +path:lang) -(+path:lib +path:tpl +path:dokuwiki +path:lang)

20 use dokuwiki\Ui\Login;
33 define('SEC_EDIT_PATTERN', '#<!-- EDIT({.*?}) -->#');
54 return $xhtml_renderer->internallink($id, $name, $search, true, 'navigation');
63 * @deprecated 2020-07-18
67 dbg_deprecated(Login::class . '::show()');
68 (new Login($svg))->show();
75 * @deprecated 2020-07-18 not called anymore, see inc/Action/Denied::tplContent()
80 (new Denied())->showBanner();
195 * @param string[] $params key-value pairs added as hidden inputs
253 * @deprecated 2020-07-18
266 * @deprecated 2020-07-18
271 (new PageView($txt))->show();
275 * ask the user about how to handle an exisiting draft
278 * @deprecated 2020-07-18
283 (new PageDraft())->show();
321 * @deprecated 2020-07-18 not called anymore, see inc/Action/Locked::tplContent()
326 (new Locked())->showBanner();
338 * @deprecated 2020-07-18
340 function html_revisions($first = -1, $media_id = '')
344 (new MediaRevisions($media_id))->show($first);
347 (new PageRevisions($INFO['id']))->show($first);
361 * @deprecated 2020-07-18
366 (new Recent($first, $show_changes))->show();
375 * @deprecated 2020-07-18
380 (new Index($ns))->show();
386 * User function for html_buildlist()
392 * @deprecated 2020-07-18
397 return (new Index())->formatListItem($item);
403 * This user function is used in html_buildlist to build the
411 * @deprecated 2020-07-18
416 return (new Index())->tagListItem($item);
426 * @deprecated 2020-07-18
438 * the item itself gets printed by the given $func user
440 * print the <li> tag. Both user function need to accept
443 * Both user functions can be given as array to point to
476 for ($i = 0; $i < ($item['level'] - $level); $i++) {
488 $level--;
489 $open--;
506 while ($open-- > 0) {
524 * @deprecated 2020-07-18
529 (new Backlinks())->show();
541 * @deprecated 2020-07-18
555 * @param string $text when non-empty: compare with this text with most current version
558 * @deprecated 2020-07-18
564 (new PageDiff($INFO['id']))->compareWith($text)->preference([
567 ])->show();
578 * @deprecated 2020-07-18
594 * @deprecated 2020-07-18
607 * @deprecated 2020-07-18
612 return (new PageDiff())->insertSoftbreaks($diffhtml);
622 * @deprecated 2020-07-18
627 (new PageConflict($text, $summary))->show();
663 * @deprecated 2020-07-18
668 (new UserRegister())->show();
672 * Print the update profile form
676 * @deprecated 2020-07-18
681 (new UserProfile())->show();
689 * @deprecated 2020-07-18
694 (new Editor())->show();
703 * @deprecated 2020-07-18
708 (new Editor())->addTextarea($param);
776 foreach ($auth->getCapabilities() as $cando) {
777 echo ' ' . str_pad($cando, 16) . ' => ' . (int)$auth->canDo($cando) . DOKU_LF;
815 * @deprecated 2020-07-18
820 (new UserResendPwd())->show();
835 $out = '<!-- TOC START -->' . DOKU_LF;
843 $out .= '<!-- TOC END -->' . DOKU_LF;
869 * @param string $link - where to link (if $hash set to '#' it's a local anchor)
870 * @param string $text - what to display in the TOC
871 * @param int $level - nesting level
872 * @param string $hash - is prepended to the given $link, set blank if you want full links
894 * @deprecated 2020-07-18
900 $form->endFieldset();
910 * @deprecated 2020-07-18
915 $form->printForm();
930 * @link http://latrine.dgx.cz/how-to-correctly-insert-a-flash-into-xhtml
932 * @param string $swf - the SWF movie to embed
933 * @param int $width - width of the flash movie in pixels
934 * @param int $height - height of the flash movie in pixels
935 * @param array $params - additional parameters (<param>)
936 * @param array $flashvars - parameters to be passed in the flashvar parameter
937 * @param array $atts - additional attributes for the <object> tag
938 * @param string $alt - alternative content (is NOT automatically escaped!)
939 * @return string - the XHTML markup
956 $std['type'] = 'application/x-shockwave-flash';
961 $ie['classid'] = 'clsid:D27CDB6E-AE6D-11cf-96B8-444553540000';
964 $out .= '<!--[if !IE]> -->' . NL;
966 $out .= '<!-- <![endif]-->' . NL;
967 $out .= '<!--[if IE]>' . NL;
970 $out .= '<!--><!-- -->' . NL;
991 $out .= '<!-- <![endif]-->' . NL;
1020 * @param string $href - tab href
1021 * @param string $caption - tab caption
1022 * @param boolean $selected - is tab selected
1043 * @param int $sizechange - size of change in Bytes
1044 * @param Doku_Form $form - (optional) form to add elements to
1057 $value = '-' . $value;
1064 $form->addElement(form_makeOpenTag('span', ['class' => $class]));
1065 $form->addElement($value);
1066 $form->addElement(form_makeCloseTag('span'));