MediaWiki
REL1_24
|
Abstract class to define pages for the web installer. More...
Public Member Functions | |
__construct (WebInstaller $parent) | |
addHTML ($html) | |
endForm ($continue= 'continue', $back= 'back') | |
execute () | |
getName () | |
getVar ($var, $default=null) | |
isSlow () | |
Is this a slow-running page in the installer? If so, WebInstaller will set_time_limit(0) before calling execute(). | |
setVar ($name, $value) | |
startForm () | |
Public Attributes | |
WebInstaller | $parent |
The WebInstaller object this WebInstallerPage belongs to. | |
Protected Member Functions | |
endLiveBox () | |
Opposite to WebInstallerPage::startLiveBox. | |
getFieldsetEnd () | |
Get the end tag of a fieldset. | |
getFieldsetStart ($legend) | |
Get the starting tags of a fieldset. | |
getId () | |
startLiveBox () | |
Opens a textarea used to display the progress of a long operation. |
Abstract class to define pages for the web installer.
Definition at line 30 of file WebInstallerPage.php.
WebInstallerPage::__construct | ( | WebInstaller $ | parent | ) |
WebInstaller | $parent |
Definition at line 46 of file WebInstallerPage.php.
WebInstallerPage::addHTML | ( | $ | html | ) |
string | $html |
Definition at line 64 of file WebInstallerPage.php.
Referenced by WebInstallerComplete\execute(), WebInstallerUpgrade\showDoneMessage(), startForm(), and WebInstallerOptions\submitCC().
WebInstallerPage::endForm | ( | $ | continue = 'continue' , |
$ | back = 'back' |
||
) |
string | bool | $continue | |
string | bool | $back |
Definition at line 85 of file WebInstallerPage.php.
Referenced by WebInstallerComplete\execute(), WebInstallerDocument\execute(), and WebInstallerUpgrade\showDoneMessage().
WebInstallerPage::endLiveBox | ( | ) | [protected] |
Opposite to WebInstallerPage::startLiveBox.
Definition at line 200 of file WebInstallerPage.php.
WebInstallerPage::execute | ( | ) | [abstract] |
WebInstallerPage::getFieldsetEnd | ( | ) | [protected] |
WebInstallerPage::getFieldsetStart | ( | $ | legend | ) | [protected] |
Get the starting tags of a fieldset.
string | $legend | Message name |
Definition at line 170 of file WebInstallerPage.php.
WebInstallerPage::getId | ( | ) | [protected] |
Definition at line 141 of file WebInstallerPage.php.
WebInstallerPage::getVar | ( | $ | var, |
$ | default = null |
||
) |
string | $var | |
mixed | $default |
Definition at line 151 of file WebInstallerPage.php.
Referenced by WebInstallerComplete\execute(), and WebInstallerUpgrade\showDoneMessage().
Is this a slow-running page in the installer? If so, WebInstaller will set_time_limit(0) before calling execute().
Right now this only applies to Install and Upgrade pages
Reimplemented in WebInstallerInstall, and WebInstallerUpgrade.
Definition at line 57 of file WebInstallerPage.php.
WebInstallerPage::setVar | ( | $ | name, |
$ | value | ||
) |
string | $name | |
mixed | $value |
Definition at line 159 of file WebInstallerPage.php.
Referenced by WebInstallerOptions\submitCC().
Definition at line 68 of file WebInstallerPage.php.
References addHTML(), array(), getName(), and Html\openElement().
Referenced by WebInstallerComplete\execute(), WebInstallerDocument\execute(), and WebInstallerUpgrade\showDoneMessage().
WebInstallerPage::startLiveBox | ( | ) | [protected] |
Opens a textarea used to display the progress of a long operation.
Definition at line 186 of file WebInstallerPage.php.
WebInstaller WebInstallerPage::$parent |
The WebInstaller object this WebInstallerPage belongs to.
Definition at line 36 of file WebInstallerPage.php.