MediaWiki REL1_30
getText.php
Go to the documentation of this file.
1<?php
26require_once __DIR__ . '/Maintenance.php';
27
34 public function __construct() {
35 parent::__construct();
36 $this->addDescription( 'Outputs page text to stdout' );
37 $this->addOption( 'show-private', 'Show the text even if it\'s not available to the public' );
38 $this->addArg( 'title', 'Page title' );
39 }
40
41 public function execute() {
42 $titleText = $this->getArg( 0 );
43 $title = Title::newFromText( $titleText );
44 if ( !$title ) {
45 $this->error( "$titleText is not a valid title.\n", true );
46 }
47
48 $rev = Revision::newFromTitle( $title );
49 if ( !$rev ) {
50 $titleText = $title->getPrefixedText();
51 $this->error( "Page $titleText does not exist.\n", true );
52 }
53 $content = $rev->getContent( $this->hasOption( 'show-private' )
56
57 if ( $content === false ) {
58 $titleText = $title->getPrefixedText();
59 $this->error( "Couldn't extract the text from $titleText.\n", true );
60 }
61 $this->output( $content->serialize() );
62 }
63}
64
65$maintClass = "GetTextMaint";
66require_once RUN_MAINTENANCE_IF_MAIN;
Maintenance script that outputs page text to stdout.
Definition getText.php:33
execute()
Do the actual work.
Definition getText.php:41
__construct()
Default constructor.
Definition getText.php:34
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
addArg( $arg, $description, $required=true)
Add some args that are needed.
hasOption( $name)
Checks to see if a particular param exists.
getArg( $argId=0, $default=null)
Get an argument.
addDescription( $text)
Set the description text.
addOption( $name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
const FOR_PUBLIC
Definition Revision.php:98
static newFromTitle(LinkTarget $linkTarget, $id=0, $flags=0)
Load either the current, or a specified, revision that's attached to a given link target.
Definition Revision.php:134
const RAW
Definition Revision.php:100
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add in any and then calling output() to send it all. It could be easily changed to send incrementally if that becomes useful
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults error
Definition hooks.txt:2581
presenting them properly to the user as errors is done by the caller return true use this to change the list i e etc $rev
Definition hooks.txt:1760
$maintClass
Definition getText.php:65
require_once RUN_MAINTENANCE_IF_MAIN