Add script 'get-openssl-version.sh'.

This commit is contained in:
2023-06-21 11:09:08 +02:00
parent 0a7a61049a
commit 14056b44dd
5032 changed files with 340126 additions and 0 deletions

View File

@ -0,0 +1,55 @@
<?php
namespace dokuwiki\Ui;
use dokuwiki\Draft;
use dokuwiki\Form\Form;
/**
* DokuWiki Page Draft Interface
*
* @package dokuwiki\Ui
*/
class PageDraft extends Ui
{
/**
* Display the Page Draft Form
* ask the user about how to handle an exisiting draft
*
* @author Andreas Gohr <andi@splitbrain.org>
*
* @return void
*/
public function show()
{
global $INFO;
global $lang;
$draft = new Draft($INFO['id'], $INFO['client']);
$text = $draft->getDraftText();
// print intro
print p_locale_xhtml('draft');
// print difference
(new PageDiff($INFO['id']))->compareWith($text)->preference('showIntro', false)->show();
// create the draft form
$form = new Form(['id' => 'dw__editform']);
$form->addTagOpen('div')->addClass('no');
$form->setHiddenField('id', $INFO['id']);
$form->setHiddenField('date', $draft->getDraftDate());
$form->setHiddenField('wikitext', $text);
$form->addTagOpen('div')->id('draft__status');
$form->addHTML($draft->getDraftMessage());
$form->addTagClose('div');
$form->addButton('do[recover]', $lang['btn_recover'] )->attrs(['type' => 'submit', 'tabindex' => '1']);
$form->addButton('do[draftdel]', $lang['btn_draftdel'])->attrs(['type' => 'submit', 'tabindex' => '2']);
$form->addButton('do[show]', $lang['btn_cancel'] )->attrs(['type' => 'submit', 'tabindex' => '3']);
$form->addTagClose('div');
print $form->toHTML('Draft');
}
}