本文整理汇总了PHP中Xml::checkLabel方法的典型用法代码示例。如果您正苦于以下问题:PHP Xml::checkLabel方法的具体用法?PHP Xml::checkLabel怎么用?PHP Xml::checkLabel使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Xml
的用法示例。
在下文中一共展示了Xml::checkLabel方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: showForm
function showForm()
{
global $wgOut, $wgUser, $wgLang, $wgRequest;
$self = SpecialPage::getTitleFor('Resetpass');
$form = '<div id="userloginForm">' . wfOpenElement('form', array('method' => 'post', 'action' => $self->getLocalUrl())) . '<h2>' . wfMsgHtml('resetpass_header') . '</h2>' . '<div id="userloginprompt">' . wfMsgExt('resetpass_text', array('parse')) . '</div>' . '<table>' . wfHidden('token', $wgUser->editToken()) . wfHidden('wpName', $this->mName) . wfHidden('wpPassword', $this->mTemporaryPassword) . wfHidden('returnto', $wgRequest->getVal('returnto')) . $this->pretty(array(array('wpName', 'username', 'text', $this->mName), array('wpNewPassword', 'newpassword', 'password', ''), array('wpRetype', 'yourpasswordagain', 'password', ''))) . '<tr>' . '<td></td>' . '<td>' . Xml::checkLabel(wfMsg('remembermypassword'), 'wpRemember', 'wpRemember', $wgRequest->getCheck('wpRemember')) . '</td>' . '</tr>' . '<tr>' . '<td></td>' . '<td>' . wfSubmitButton(wfMsgHtml('resetpass_submit')) . '</td>' . '</tr>' . '</table>' . wfCloseElement('form') . '</div>';
$wgOut->addHtml($form);
}
示例2: showList
function showList($conds = array('af_deleted' => 0), $optarray = array())
{
global $wgAbuseFilterCentralDB, $wgAbuseFilterIsCentral;
$output = '';
$output .= Xml::element('h2', null, $this->msg('abusefilter-list')->parse());
$pager = new AbuseFilterPager($this, $conds);
$deleted = $optarray['deleted'];
$hidedisabled = $optarray['hidedisabled'];
$scope = $optarray['scope'];
# Options form
$fields = array();
$fields['abusefilter-list-options-deleted'] = Xml::radioLabel($this->msg('abusefilter-list-options-deleted-show')->text(), 'deletedfilters', 'show', 'mw-abusefilter-deletedfilters-show', $deleted == 'show') . Xml::radioLabel($this->msg('abusefilter-list-options-deleted-hide')->text(), 'deletedfilters', 'hide', 'mw-abusefilter-deletedfilters-hide', $deleted == 'hide') . Xml::radioLabel($this->msg('abusefilter-list-options-deleted-only')->text(), 'deletedfilters', 'only', 'mw-abusefilter-deletedfilters-only', $deleted == 'only');
if (isset($wgAbuseFilterCentralDB) && !$wgAbuseFilterIsCentral) {
$fields['abusefilter-list-options-scope'] = Xml::radioLabel($this->msg('abusefilter-list-options-scope-local')->text(), 'rulescope', 'local', 'mw-abusefilter-rulescope-local', $scope == 'local') . Xml::radioLabel($this->msg('abusefilter-list-options-scope-global')->text(), 'rulescope', 'global', 'mw-abusefilter-rulescope-global', $scope == 'global');
}
$fields['abusefilter-list-options-disabled'] = Xml::checkLabel($this->msg('abusefilter-list-options-hidedisabled')->text(), 'hidedisabled', 'mw-abusefilter-disabledfilters-hide', $hidedisabled);
$fields['abusefilter-list-limit'] = $pager->getLimitSelect();
$options = Xml::buildForm($fields, 'abusefilter-list-options-submit');
$options .= Html::hidden('title', $this->getTitle()->getPrefixedText());
$options = Xml::tags('form', array('method' => 'get', 'action' => $this->getTitle()->getFullURL()), $options);
$options = Xml::fieldset($this->msg('abusefilter-list-options')->text(), $options);
$output .= $options;
if (isset($wgAbuseFilterCentralDB) && !$wgAbuseFilterIsCentral && $scope == 'global') {
$globalPager = new GlobalAbuseFilterPager($this, $conds);
$output .= $globalPager->getNavigationBar() . $globalPager->getBody() . $globalPager->getNavigationBar();
} else {
$output .= $pager->getNavigationBar() . $pager->getBody() . $pager->getNavigationBar();
}
$this->getOutput()->addHTML($output);
}
示例3: show
function show()
{
global $wgOut, $wgUser, $wgRequest;
AbuseFilter::disableConditionLimit();
if (!$wgUser->isAllowed('abusefilter-modify')) {
$wgOut->addWikiMsg('abusefilter-mustbeeditor');
return;
}
$this->loadParameters();
$wgOut->setPageTitle(wfMsg('abusefilter-test'));
$wgOut->addWikiMsg('abusefilter-test-intro', self::$mChangeLimit);
$output = '';
$output .= AbuseFilter::buildEditBox($this->mFilter, 'wpTestFilter') . "\n";
$output .= Xml::inputLabel(wfMsg('abusefilter-test-load-filter'), 'wpInsertFilter', 'mw-abusefilter-load-filter', 10, '') . ' ' . Xml::element('input', array('type' => 'button', 'value' => wfMsg('abusefilter-test-load'), 'id' => 'mw-abusefilter-load'));
$output = Xml::tags('div', array('id' => 'mw-abusefilter-test-editor'), $output);
$output .= Xml::tags('p', null, Xml::checkLabel(wfMsg('abusefilter-test-shownegative'), 'wpShowNegative', 'wpShowNegative', $this->mShowNegative));
// Selectory stuff
$selectFields = array();
$selectFields['abusefilter-test-user'] = Xml::input('wpTestUser', 45, $this->mTestUser);
$selectFields['abusefilter-test-period-start'] = Xml::input('wpTestPeriodStart', 45, $this->mTestPeriodStart);
$selectFields['abusefilter-test-period-end'] = Xml::input('wpTestPeriodEnd', 45, $this->mTestPeriodEnd);
$selectFields['abusefilter-test-page'] = Xml::input('wpTestPage', 45, $this->mTestPage);
$output .= Xml::buildForm($selectFields, 'abusefilter-test-submit');
$output .= Html::hidden('title', $this->getTitle('test')->getPrefixedText());
$output = Xml::tags('form', array('action' => $this->getTitle('test')->getLocalURL(), 'method' => 'post'), $output);
$output = Xml::fieldset(wfMsg('abusefilter-test-legend'), $output);
$wgOut->addHTML($output);
if ($wgRequest->wasPosted()) {
$this->doTest();
}
}
示例4: showForm
function showForm($err = '')
{
global $wgOut, $wgUser, $wgLang;
$wgOut->setPagetitle(wfMsg("makesysoptitle"));
$wgOut->addWikiText(wfMsg("makesysoptext"));
$titleObj = Title::makeTitle(NS_SPECIAL, "Makesysop");
$action = $titleObj->getLocalUrl("action=submit");
if ($wgUser->isAllowed('userrights')) {
$wgOut->addWikiText(wfMsg('makesysop-see-userrights'));
}
if ("" != $err) {
$wgOut->setSubtitle(wfMsg("formerror"));
$wgOut->addHTML("<p class='error'>{$err}</p>\n");
}
$namedesc = wfMsg("makesysopname");
if (!is_null($this->mUser)) {
$encUser = htmlspecialchars($this->mUser);
} else {
$encUser = "";
}
$reason = htmlspecialchars(wfMsg("userrights-reason"));
$makebureaucrat = wfMsg("setbureaucratflag");
$mss = wfMsg("set_user_rights");
$wgOut->addHTML(Xml::openElement('form', array('method' => 'post', 'action' => $action, 'id' => 'makesysop')) . Xml::openElement('fieldset') . Xml::element('legend', array(), wfMsg('makesysoptitle')) . "<table border='0'>\n\t\t\t<tr>\n\t\t\t\t<td align='right'>{$namedesc}</td>\n\t\t\t\t<td align='left'>" . Xml::input('wpMakesysopUser', 40, $encUser) . "</td>\n\t\t\t</tr><tr>\n\t\t\t\t<td align='right'>{$reason}</td>\n\t\t\t\t<td align='left'>" . Xml::input('wpMakesysopReason', 40, $this->mReason, array('maxlength' => 255)) . "</td>\n\t\t\t</tr><tr>\n\t\t\t\t<td> </td>\n\t\t\t\t<td align='left'>" . Xml::checkLabel($makebureaucrat, 'wpSetBureaucrat', 'wpSetBureaucrat', $this->mSetBureaucrat) . "</td>\n\t\t\t</tr><tr>\n\t\t\t\t<td> </td>\n\t\t\t\t<td align='left'>" . Xml::submitButton($mss, array('name' => 'wpMakesysopSubmit')) . "</td>\n\t\t\t</tr>\n\t\t\t</table>" . Xml::hidden('wpEditToken', $wgUser->editToken()) . Xml::closeElement('fieldset') . Xml::closeElement('form') . "\n");
}
示例5: efConfigureAjax
/**
* Ajax function to create checkboxes for a new group in $wgGroupPermissions
*
* @param String $group new group name
* @return either <err#> if group already exist or html fragment
*/
function efConfigureAjax($group)
{
global $wgUser, $wgGroupPermissions;
if (!$wgUser->isAllowed('configure-all')) {
return '<err#>';
}
if (isset($wgGroupPermissions[$group])) {
$html = '<err#>';
} else {
if (is_callable(array('User', 'getAllRights'))) {
// 1.13 +
$all = User::getAllRights();
} else {
$all = array();
foreach ($wgGroupPermissions as $rights) {
$all = array_merge($all, array_keys($rights));
}
$all = array_unique($all);
}
$row = '<div style="-moz-column-count:2"><ul>';
foreach ($all as $right) {
$id = Sanitizer::escapeId('wpwgGroupPermissions-' . $group . '-' . $right);
$desc = is_callable(array('User', 'getRightDescription')) ? User::getRightDescription($right) : $right;
$row .= '<li>' . Xml::checkLabel($desc, $id, $id) . "</li>\n";
}
$row .= '</ul></div>';
$groupName = User::getGroupName($group);
// Firefox seems to not like that :(
$html = str_replace(' ', ' ', $row);
}
return $html;
}
示例6: efFilterListUsersHeaderForm
/**
* Adds the "Show all users" checkbox for privileged users.
*
* @param $usersPager Object: instance of UsersPager
* @param $out String: HTML output
* @return Boolean: true
*/
function efFilterListUsersHeaderForm($usersPager, &$out)
{
global $wgRequest, $wgUser;
// Show this checkbox only to privileged users
if ($wgUser->isAllowed('viewallusers')) {
$out .= Xml::checkLabel(wfMsg('listusers-showall'), 'showall', 'showall', $wgRequest->getVal('showall'));
$out .= ' ';
}
return true;
}
示例7: show
public function show($params)
{
global $wgOut;
$wgOut->setPageTitle(wfMsg('deletequeue'));
$this->loadSearch();
// Intro text
$wgOut->addWikiMsg('deletequeue-list-text');
// Search box
$searchBox = array();
// // Queue selector
$selector = Xml::openElement('select', array('name' => 'queue')) . "\n";
$queues = array('speedy', 'prod', 'deletediscuss');
$attribs = array('value' => '');
if (in_array($this->mQueue, $queues)) {
$attribs['selected'] = 'selected';
}
$selector .= Xml::element('option', $attribs, wfMsg('deletequeue-list-anyqueue'));
foreach ($queues as $queue) {
$attribs = array('value' => $queue);
if ($this->mQueue == $queue) {
$attribs['selected'] = 'selected';
}
$selector .= Xml::element('option', $attribs, wfMsg("deletequeue-queue-{$queue}"));
}
$selector .= Xml::closeElement('select');
$searchBox['deletequeue-list-queue'] = $selector;
$searchBox['deletequeue-list-status'] = Xml::checkLabel(wfMsg('deletequeue-list-expired'), 'expired', 'mw-dq-expired', $this->mExpired);
$searchBox = Xml::buildForm($searchBox, 'deletequeue-list-search');
$searchBox .= Html::Hidden('title', $this->getTitle()->getPrefixedText());
$searchBox = Xml::tags('form', array('action' => $this->getTitle()->getFullURL(), 'method' => 'get'), $searchBox);
$searchBox = Xml::fieldset(wfMsg('deletequeue-list-search-legend'), $searchBox);
$wgOut->addHTML($searchBox);
$conds = array('dq_active' => 1);
if ($this->mQueue) {
$conds['dq_queue'] = $this->mQueue;
}
if ($this->mExpired) {
$dbr = wfGetDB(DB_SLAVE);
$conds[] = 'dq_expiry<' . $dbr->addQuotes($dbr->timestamp(wfTimestampNow()));
}
// Headers
$body = '';
$headers = array('page', 'queue', 'votes', 'expiry', 'discusspage');
foreach ($headers as $header) {
$body .= Xml::element('th', null, wfMsg("deletequeue-list-header-{$header}")) . "\n";
}
$body = Xml::tags('tr', null, $body);
// The list itself
$pager = new DeleteQueuePager($conds);
$body .= $pager->getBody();
$body = Xml::tags('table', array('class' => 'wikitable'), $body);
$wgOut->addHTML($pager->getNavigationBar() . $body . $pager->getNavigationBar());
}
示例8: endRecentChangesList
/**
* (non-PHPdoc)
* @see includes/EnhancedChangesList#endRecentChangesList()
*/
public function endRecentChangesList()
{
global $wgRequest;
$collabWatchlist = $wgRequest->getIntOrNull('collabwatchlist');
$result = '';
$result .= parent::endRecentChangesList();
$glWlIdAndName = $this->getCollabWatchlistIdAndName($this->user->getId());
$result .= $this->collabWatchlistAndTagSelectors($glWlIdAndName, $collabWatchlist, null, 'collabwatchlist', wfMsg('collabwatchlist')) . ' ';
$result .= Xml::label(wfMsg('collabwatchlisttagcomment'), 'tagcomment') . ' ' . Xml::input('tagcomment') . ' ';
if ($this->user->useRCPatrol()) {
$result .= Xml::checkLabel(wfMsg('collabwatchlistpatrol'), 'setpatrolled', 'setpatrolled', true) . ' ';
}
$result .= Xml::submitButton(wfMsg('collabwatchlistsettagbutton'));
$result .= Xml::closeElement('form');
return $result;
}
示例9: languageForm
/**
* HTML for the top form
* @param integer $code A language code (default empty, example: 'en').
* @param bool $suppressComplete If completely translated groups should be suppressed
* @return string HTML
*/
function languageForm($code = '', $suppressComplete = false, $suppressEmpty = false)
{
global $wgScript;
$t = $this->getTitle();
$out = Xml::openElement('div', array('class' => 'languagecode'));
$out .= Xml::openElement('form', array('method' => 'get', 'action' => $wgScript));
$out .= Html::hidden('title', $t->getPrefixedText());
$out .= Xml::openElement('fieldset');
$out .= Xml::element('legend', null, wfMsg('translate-language-code'));
$out .= Xml::openElement('table', array('id' => 'langcodeselect', 'class' => 'allpages'));
$out .= "<tr>\n\t\t\t\t<td class='mw-label'>" . Xml::label(wfMsg('translate-language-code-field-name'), 'code') . "</td>\n\t\t\t\t<td class='mw-input'>" . Xml::input('code', 30, str_replace('_', ' ', $code), array('id' => 'code')) . "</td></tr><tr><td colspan='2'>" . Xml::checkLabel(wfMsg('translate-suppress-complete'), 'suppresscomplete', 'suppresscomplete', $suppressComplete) . Xml::checkLabel(wfMsg('translate-suppress-empty'), 'suppressempty', 'suppressempty', $suppressEmpty) . "</td>" . "</tr>" . "<tr>" . "<td class='mw-input'>" . Xml::submitButton(wfMsg('allpagessubmit')) . "</td>\n\t\t\t</tr>";
$out .= Xml::closeElement('table');
$out .= Xml::closeElement('fieldset');
$out .= Xml::closeElement('form');
$out .= Xml::closeElement('div');
return $out;
}
示例10: getform
function getform() {
global $wgScript;
$out = Html::openElement( 'div' );
$out .= Html::openElement( 'form', array( 'method' => 'get', 'action' => $wgScript ) );
$out .= Html::hidden( 'title', $this->getTitle()->getPrefixedText() );
$out .= Html::hidden( 'x', 'D' ); // To detect submission
$out .= Html::openElement( 'fieldset' );
$out .= Html::element( 'legend', null, wfMsg( 'translate-mgs-fieldset' ) );
$out .= Html::openElement( 'table' );
$out .= Html::openElement( 'tr' );
$out .= Html::openElement( 'td', array( 'class' => 'mw-label' ) );
$out .= Xml::label( wfMsg( 'translate-mgs-group' ), 'group' );
$out .= Html::closeElement( 'td' );
$out .= Html::openElement( 'td', array( 'class' => 'mw-input' ) );
$out .= TranslateUtils::groupSelector( $this->target )->getHTML();
$out .= Html::closeElement( 'td' );
$out .= Html::closeElement( 'tr' );
$out .= Html::openElement( 'tr' );
$out .= Html::openElement( 'td', array( 'colspan' => 2 ) );
$out .= Xml::checkLabel( wfMsg( 'translate-mgs-nocomplete' ), 'suppresscomplete', 'suppresscomplete', $this->noComplete );
$out .= Html::closeElement( 'td' );
$out .= Html::closeElement( 'tr' );
$out .= Html::openElement( 'tr' );
$out .= Html::openElement( 'td', array( 'colspan' => 2 ) );
$out .= Xml::checkLabel( wfMsg( 'translate-mgs-noempty' ), 'suppressempty', 'suppressempty', $this->noEmpty );
$out .= Html::closeElement( 'td' );
$out .= Html::closeElement( 'tr' );
$out .= Html::openElement( 'tr' );
$out .= Html::openElement( 'td', array( 'class' => 'mw-input', 'colspan' => 2 ) );
$out .= Xml::submitButton( wfMsg( 'translate-mgs-submit' ) );
$out .= Html::closeElement( 'td' );
$out .= Html::closeElement( 'tr' );
$out .= Html::closeElement( 'table' );
$out .= Html::closeElement( 'fieldset' );
$out .= Html::closeElement( 'form' );
$out .= Html::closeElement( 'div' );
return $out;
}
示例11: showForm
/**
* Shows the search form
*/
private function showForm()
{
global $wgScript, $wgOut, $wgRequest;
/* Build form */
$html = Xml::openElement('form', array('action' => $wgScript)) . "\n";
// Name of SpecialPage
$html .= Html::hidden('title', $this->getTitle()->getPrefixedText()) . "\n";
// Limit
$html .= Html::hidden('limit', $wgRequest->getInt('limit', 50));
// Input box with target prefilled if available
$formContent = "\t" . Xml::input('target', 40, is_null($this->target) ? '' : $this->target->getText()) . "\n\t" . Xml::element('input', array('type' => 'submit', 'value' => wfMsg('globalusage-ok'))) . "\n\t<p>" . Xml::checkLabel(wfMsg('globalusage-filterlocal'), 'filterlocal', 'mw-filterlocal', $this->filterLocal) . '</p>';
if (!is_null($this->target) && wfFindFile($this->target)) {
// Show the image if it exists
$html .= Linker::makeThumbLinkObj($this->target, wfFindFile($this->target), $this->target->getPrefixedText(), '', wfUILang()->alignEnd(), array(), false, false);
}
// Wrap the entire form in a nice fieldset
$html .= Xml::fieldSet(wfMsg('globalusage-text'), $formContent) . "\n</form>";
$wgOut->addHtml($html);
}
示例12: showForm
function showForm()
{
global $wgOut, $wgUser, $wgRequest;
$wgOut->disallowUserJs();
$self = SpecialPage::getTitleFor('Resetpass');
if (!$this->mUserName) {
$this->mUserName = $wgUser->getName();
}
$rememberMe = '';
if (!$wgUser->isLoggedIn()) {
$rememberMe = '<tr>' . '<td></td>' . '<td class="mw-input">' . Xml::checkLabel(wfMsg('remembermypassword'), 'wpRemember', 'wpRemember', $wgRequest->getCheck('wpRemember')) . '</td>' . '</tr>';
$submitMsg = 'resetpass_submit';
$oldpassMsg = 'resetpass-temp-password';
} else {
$oldpassMsg = 'oldpassword';
$submitMsg = 'resetpass-submit-loggedin';
}
$wgOut->addHTML(Xml::fieldset(wfMsg('resetpass_header')) . Xml::openElement('form', array('method' => 'post', 'action' => $self->getLocalUrl(), 'id' => 'mw-resetpass-form')) . "\n" . Xml::hidden('token', $wgUser->editToken()) . "\n" . Xml::hidden('wpName', $this->mUserName) . "\n" . Xml::hidden('returnto', $wgRequest->getVal('returnto')) . "\n" . wfMsgExt('resetpass_text', array('parse')) . "\n" . Xml::openElement('table', array('id' => 'mw-resetpass-table')) . "\n" . $this->pretty(array(array('wpName', 'username', 'text', $this->mUserName), array('wpPassword', $oldpassMsg, 'password', $this->mOldpass), array('wpNewPassword', 'newpassword', 'password', null), array('wpRetype', 'retypenew', 'password', null))) . "\n" . $rememberMe . "<tr>\n" . "<td></td>\n" . '<td class="mw-input">' . Xml::submitButton(wfMsg($submitMsg)) . Xml::submitButton(wfMsg('resetpass-submit-cancel'), array('name' => 'wpCancel')) . "</td>\n" . "</tr>\n" . Xml::closeElement('table') . Xml::closeElement('form') . Xml::closeElement('fieldset') . "\n");
}
示例13: showList
function showList($conds = array('af_deleted' => 0), $optarray = array())
{
$output = '';
$output .= Xml::element('h2', null, wfMsgExt('abusefilter-list', array('parseinline')));
$pager = new AbuseFilterPager($this, $conds);
$deleted = $optarray['deleted'];
$hidedisabled = $optarray['hidedisabled'];
# Options form
$fields = array();
$fields['abusefilter-list-options-deleted'] = Xml::radioLabel(wfMsg('abusefilter-list-options-deleted-show'), 'deletedfilters', 'show', 'mw-abusefilter-deletedfilters-show', $deleted == 'show') . Xml::radioLabel(wfMsg('abusefilter-list-options-deleted-hide'), 'deletedfilters', 'hide', 'mw-abusefilter-deletedfilters-hide', $deleted == 'hide') . Xml::radioLabel(wfMsg('abusefilter-list-options-deleted-only'), 'deletedfilters', 'only', 'mw-abusefilter-deletedfilters-only', $deleted == 'only');
$fields['abusefilter-list-options-disabled'] = Xml::checkLabel(wfMsg('abusefilter-list-options-hidedisabled'), 'hidedisabled', 'mw-abusefilter-disabledfilters-hide', $hidedisabled);
$fields['abusefilter-list-limit'] = $pager->getLimitSelect();
$options = Xml::buildForm($fields, 'abusefilter-list-options-submit');
$options .= Html::hidden('title', $this->getTitle()->getPrefixedText());
$options = Xml::tags('form', array('method' => 'get', 'action' => $this->getTitle()->getFullURL()), $options);
$options = Xml::fieldset(wfMsg('abusefilter-list-options'), $options);
$output .= $options;
$output .= $pager->getNavigationBar() . $pager->getBody() . $pager->getNavigationBar();
$this->getOutput()->addHTML($output);
}
示例14: makeForm
/**
* Generate a form allowing users to enter information
*
* @param $title Value for context title field
* @param $input Value for input textbox
* @return string
*/
private function makeForm($title, $input)
{
$self = $this->getTitle();
$form = Xml::openElement('form', array('method' => 'post', 'action' => $self->getLocalUrl()));
$form .= "<fieldset><legend>" . wfMsgHtml('expandtemplates') . "</legend>\n";
$form .= '<p>' . Xml::inputLabel(wfMsgNoTrans('expand_templates_title'), 'contexttitle', 'contexttitle', 60, $title) . '</p>';
$form .= '<p>' . Xml::label(wfMsg('expand_templates_input'), 'input') . '</p>';
$form .= Xml::openElement('textarea', array('name' => 'input', 'id' => 'input', 'rows' => 10, 'cols' => 10));
$form .= htmlspecialchars($input);
$form .= Xml::closeElement('textarea');
$form .= '<p>' . Xml::checkLabel(wfMsg('expand_templates_remove_comments'), 'removecomments', 'removecomments', $this->removeComments) . '</p>';
$form .= '<p>' . Xml::checkLabel(wfMsg('expand_templates_remove_nowiki'), 'removenowiki', 'removenowiki', $this->removeNowiki) . '</p>';
if ($this->isNewParser) {
$form .= '<p>' . Xml::checkLabel(wfMsg('expand_templates_generate_xml'), 'generate_xml', 'generate_xml', $this->generateXML) . '</p>';
}
$form .= '<p>' . Xml::submitButton(wfMsg('expand_templates_ok'), array('accesskey' => 's')) . '</p>';
$form .= "</fieldset>\n";
$form .= Xml::closeElement('form');
return $form;
}
示例15: showForm
protected function showForm()
{
global $wgScript;
$this->getOutput()->addWikiMsg('stablepages-list', $this->getLang()->formatNum($this->pager->getNumRows()));
$fields = array();
// Namespace selector
if (count(FlaggedRevs::getReviewNamespaces()) > 1) {
$fields[] = FlaggedRevsXML::getNamespaceMenu($this->namespace, '');
}
// Restriction level selector
if (FlaggedRevs::getRestrictionLevels()) {
$fields[] = FlaggedRevsXML::getRestrictionFilterMenu($this->autoreview);
}
$fields[] = Xml::checkLabel(wfMsg('stablepages-indef'), 'indef', 'stablepages-indef', $this->indef);
$form = Html::openElement('form', array('name' => 'stablepages', 'action' => $wgScript, 'method' => 'get'));
$form .= Html::hidden('title', $this->getTitle()->getPrefixedDBKey());
$form .= "<fieldset><legend>" . wfMsg('stablepages') . "</legend>\n";
$form .= implode(' ', $fields) . ' ';
$form .= " " . Xml::submitButton(wfMsg('go'));
$form .= "</fieldset>\n";
$form .= Html::closeElement('form') . "\n";
$this->getOutput()->addHTML($form);
}