MediaWiki REL1_33
|
Output class modelled on OutputPage. More...
Public Member Functions | |
__construct (WebInstaller $parent) | |
addHTML ( $html) | |
addHTMLNoFlush ( $html) | |
addWikiText ( $text) | |
addWikiTextAsInterface ( $text) | |
allowFrames ( $allow=true) | |
flush () | |
getCSS () | |
Get the stylesheet of the MediaWiki skin. | |
getHeadAttribs () | |
getJQuery () | |
headerDone () | |
Get whether the header has been output. | |
output () | |
outputFooter () | |
outputHeader () | |
outputShortHeader () | |
outputTitle () | |
redirect ( $url) | |
useShortHeader ( $use=true) | |
Public Attributes | |
bool | $allowFrames = false |
Does the current page need to allow being used as a frame? If not, X-Frame-Options will be output to forbid it. | |
WebInstaller | $parent |
The WebInstaller object this WebInstallerOutput is used by. | |
string | $redirectTarget |
Private Member Functions | |
getCssUrl () | |
"<link>" to index.php?css=1 for the "<head>" | |
getLanguage () | |
Private Attributes | |
string | $contents = '' |
Buffered contents that haven't been output yet. | |
bool | $headerDone = false |
Has the header (or short header) been output? | |
bool | $useShortHeader = false |
Whether to use the limited header (used during CC license callbacks) | |
Output class modelled on OutputPage.
I've opted to use a distinct class rather than derive from OutputPage here in the interests of separation of concerns: if we used a subclass, there would be quite a lot of things you could do in OutputPage that would break the installer, that wouldn't be immediately obvious.
Definition at line 38 of file WebInstallerOutput.php.
WebInstallerOutput::__construct | ( | WebInstaller | $parent | ) |
WebInstaller | $parent |
Definition at line 81 of file WebInstallerOutput.php.
References $parent.
WebInstallerOutput::addHTML | ( | $html | ) |
string | $html |
Definition at line 88 of file WebInstallerOutput.php.
References $html, contents, and flush().
Referenced by addWikiTextAsInterface().
WebInstallerOutput::addHTMLNoFlush | ( | $html | ) |
string | $html |
Definition at line 113 of file WebInstallerOutput.php.
WebInstallerOutput::addWikiText | ( | $text | ) |
string | $text |
Definition at line 97 of file WebInstallerOutput.php.
References addWikiTextAsInterface(), and wfDeprecated().
WebInstallerOutput::addWikiTextAsInterface | ( | $text | ) |
string | $text |
Definition at line 106 of file WebInstallerOutput.php.
References addHTML().
Referenced by addWikiText().
WebInstallerOutput::allowFrames | ( | $allow = true | ) |
Definition at line 210 of file WebInstallerOutput.php.
References allowFrames().
Referenced by allowFrames(), and outputHeader().
WebInstallerOutput::flush | ( | ) |
Definition at line 214 of file WebInstallerOutput.php.
References $contents, contents, flush(), headerDone(), and outputHeader().
WebInstallerOutput::getCSS | ( | ) |
Get the stylesheet of the MediaWiki skin.
Definition at line 142 of file WebInstallerOutput.php.
References $data, $resourceLoader, $wgStyleDirectory, as, and getLanguage().
|
private |
"<link>" to index.php?css=1 for the "<head>"
Definition at line 202 of file WebInstallerOutput.php.
Referenced by outputHeader(), and outputShortHeader().
WebInstallerOutput::getHeadAttribs | ( | ) |
Definition at line 238 of file WebInstallerOutput.php.
References getLanguage().
Referenced by outputHeader(), and outputShortHeader().
WebInstallerOutput::getJQuery | ( | ) |
Definition at line 349 of file WebInstallerOutput.php.
Referenced by outputHeader(), and outputShortHeader().
|
private |
Definition at line 229 of file WebInstallerOutput.php.
References $wgLang.
Referenced by getCSS(), getHeadAttribs(), and outputHeader().
WebInstallerOutput::headerDone | ( | ) |
Get whether the header has been output.
Definition at line 250 of file WebInstallerOutput.php.
References $headerDone.
Referenced by flush(), outputHeader(), and redirect().
WebInstallerOutput::output | ( | ) |
Definition at line 129 of file WebInstallerOutput.php.
References flush(), and outputFooter().
WebInstallerOutput::outputFooter | ( | ) |
Definition at line 295 of file WebInstallerOutput.php.
References $section, as, div, href, php, style, title, useShortHeader(), and wfMessage().
Referenced by output().
WebInstallerOutput::outputHeader | ( | ) |
Definition at line 254 of file WebInstallerOutput.php.
References allowFrames(), content, div, getCssUrl(), getHeadAttribs(), getJQuery(), getLanguage(), headerDone(), http, name, outputShortHeader(), outputTitle(), php, title, and useShortHeader().
Referenced by flush().
WebInstallerOutput::outputShortHeader | ( | ) |
Definition at line 325 of file WebInstallerOutput.php.
References content, getCssUrl(), getHeadAttribs(), getJQuery(), http, name, outputTitle(), php, style, and title.
Referenced by outputHeader().
WebInstallerOutput::outputTitle | ( | ) |
Definition at line 341 of file WebInstallerOutput.php.
References $wgVersion, and wfMessage().
Referenced by outputHeader(), and outputShortHeader().
WebInstallerOutput::redirect | ( | $url | ) |
string | $url |
MWException |
Definition at line 122 of file WebInstallerOutput.php.
References headerDone().
WebInstallerOutput::useShortHeader | ( | $use = true | ) |
Definition at line 206 of file WebInstallerOutput.php.
References useShortHeader().
Referenced by outputFooter(), outputHeader(), and useShortHeader().
bool WebInstallerOutput::$allowFrames = false |
Does the current page need to allow being used as a frame? If not, X-Frame-Options will be output to forbid it.
Definition at line 70 of file WebInstallerOutput.php.
|
private |
Buffered contents that haven't been output yet.
Definition at line 51 of file WebInstallerOutput.php.
Referenced by flush().
|
private |
Has the header (or short header) been output?
Definition at line 57 of file WebInstallerOutput.php.
Referenced by headerDone().
WebInstaller WebInstallerOutput::$parent |
The WebInstaller object this WebInstallerOutput is used by.
Definition at line 45 of file WebInstallerOutput.php.
Referenced by __construct().
string WebInstallerOutput::$redirectTarget |
Definition at line 62 of file WebInstallerOutput.php.
|
private |
Whether to use the limited header (used during CC license callbacks)
Definition at line 76 of file WebInstallerOutput.php.