MediaWiki  1.29.1
SpecialNewimages.php
Go to the documentation of this file.
1 <?php
26  protected $opts;
27 
28  public function __construct() {
29  parent::__construct( 'Newimages' );
30  }
31 
32  public function execute( $par ) {
33  $this->setHeaders();
34  $this->outputHeader();
35 
36  $out = $this->getOutput();
37  $this->addHelpLink( 'Help:New images' );
38 
39  $opts = new FormOptions();
40 
41  $opts->add( 'like', '' );
42  $opts->add( 'user', '' );
43  $opts->add( 'showbots', false );
44  $opts->add( 'hidepatrolled', false );
45  $opts->add( 'limit', 50 );
46  $opts->add( 'offset', '' );
47 
49 
50  if ( $par !== null ) {
51  $opts->setValue( is_numeric( $par ) ? 'limit' : 'like', $par );
52  }
53 
54  $opts->validateIntBounds( 'limit', 0, 500 );
55 
56  $this->opts = $opts;
57 
58  if ( !$this->including() ) {
59  $this->setTopText();
60  $this->buildForm();
61  }
62 
63  $pager = new NewFilesPager( $this->getContext(), $opts );
64 
65  $out->addHTML( $pager->getBody() );
66  if ( !$this->including() ) {
67  $out->addHTML( $pager->getNavigationBar() );
68  }
69  }
70 
71  protected function buildForm() {
72  $formDescriptor = [
73  'like' => [
74  'type' => 'text',
75  'label-message' => 'newimages-label',
76  'name' => 'like',
77  ],
78 
79  'user' => [
80  'type' => 'text',
81  'label-message' => 'newimages-user',
82  'name' => 'user',
83  ],
84 
85  'showbots' => [
86  'type' => 'check',
87  'label-message' => 'newimages-showbots',
88  'name' => 'showbots',
89  ],
90 
91  'hidepatrolled' => [
92  'type' => 'check',
93  'label-message' => 'newimages-hidepatrolled',
94  'name' => 'hidepatrolled',
95  ],
96 
97  'limit' => [
98  'type' => 'hidden',
99  'default' => $this->opts->getValue( 'limit' ),
100  'name' => 'limit',
101  ],
102 
103  'offset' => [
104  'type' => 'hidden',
105  'default' => $this->opts->getValue( 'offset' ),
106  'name' => 'offset',
107  ],
108  ];
109 
110  if ( $this->getConfig()->get( 'MiserMode' ) ) {
111  unset( $formDescriptor['like'] );
112  }
113 
114  if ( !$this->getUser()->useFilePatrol() ) {
115  unset( $formDescriptor['hidepatrolled'] );
116  }
117 
118  HTMLForm::factory( 'ooui', $formDescriptor, $this->getContext() )
119  ->setWrapperLegendMsg( 'newimages-legend' )
120  ->setSubmitTextMsg( 'ilsubmit' )
121  ->setMethod( 'get' )
122  ->prepareForm()
123  ->displayForm( false );
124  }
125 
126  protected function getGroupName() {
127  return 'changes';
128  }
129 
133  function setTopText() {
135 
136  $message = $this->msg( 'newimagestext' )->inContentLanguage();
137  if ( !$message->isDisabled() ) {
138  $this->getOutput()->addWikiText(
139  Html::rawElement( 'p',
140  [ 'lang' => $wgContLang->getHtmlCode(), 'dir' => $wgContLang->getDir() ],
141  "\n" . $message->plain() . "\n"
142  ),
143  /* $lineStart */ false,
144  /* $interface */ false
145  );
146  }
147  }
148 }
SpecialPage\getOutput
getOutput()
Get the OutputPage being used for this instance.
Definition: SpecialPage.php:675
SpecialNewFiles\buildForm
buildForm()
Definition: SpecialNewimages.php:71
SpecialNewFiles
Definition: SpecialNewimages.php:24
IncludableSpecialPage
Shortcut to construct an includable special page.
Definition: IncludableSpecialPage.php:29
FormOptions\validateIntBounds
validateIntBounds( $name, $min, $max)
Definition: FormOptions.php:250
FormOptions\fetchValuesFromRequest
fetchValuesFromRequest(WebRequest $r, $optionKeys=null)
Fetch values for all options (or selected options) from the given WebRequest, making them available f...
Definition: FormOptions.php:341
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
SpecialNewFiles\setTopText
setTopText()
Send the text to be displayed above the options.
Definition: SpecialNewimages.php:133
FormOptions\add
add( $name, $default, $type=self::AUTO)
Add an option to be handled by this FormOptions instance.
Definition: FormOptions.php:81
SpecialPage\addHelpLink
addHelpLink( $to, $overrideBaseUrl=false)
Adds help link with an icon via page indicators.
Definition: SpecialPage.php:785
SpecialPage\getConfig
getConfig()
Shortcut to get main config object.
Definition: SpecialPage.php:714
HTMLForm\factory
static factory( $displayFormat)
Construct a HTMLForm object for given display type.
Definition: HTMLForm.php:277
SpecialPage\setHeaders
setHeaders()
Sets headers - this should be called from the execute() method of all derived classes!
Definition: SpecialPage.php:484
SpecialPage\getUser
getUser()
Shortcut to get the User executing this instance.
Definition: SpecialPage.php:685
global
when a variable name is used in a it is silently declared as a new masking the global
Definition: design.txt:93
SpecialPage\getContext
getContext()
Gets the context this SpecialPage is executed in.
Definition: SpecialPage.php:648
FormOptions\setValue
setValue( $name, $value, $force=false)
Use to set the value of an option.
Definition: FormOptions.php:163
SpecialNewFiles\$opts
FormOptions $opts
Definition: SpecialNewimages.php:26
captcha-old.opts
opts
Definition: captcha-old.py:203
SpecialPage\msg
msg()
Wrapper around wfMessage that sets the current context.
Definition: SpecialPage.php:746
SpecialPage\getRequest
getRequest()
Get the WebRequest being used for this instance.
Definition: SpecialPage.php:665
SpecialNewFiles\__construct
__construct()
Definition: SpecialNewimages.php:28
SpecialNewFiles\getGroupName
getGroupName()
Under which header this special page is listed in Special:SpecialPages See messages 'specialpages-gro...
Definition: SpecialNewimages.php:126
Html\rawElement
static rawElement( $element, $attribs=[], $contents='')
Returns an HTML element in a string.
Definition: Html.php:209
FormOptions
Helper class to keep track of options when mixing links and form elements.
Definition: FormOptions.php:35
SpecialNewFiles\execute
execute( $par)
Default execute method Checks user permissions.
Definition: SpecialNewimages.php:32
NewFilesPager
Definition: NewFilesPager.php:27
SpecialPage\outputHeader
outputHeader( $summaryMessageKey='')
Outputs a summary message on top of special pages Per default the message key is the canonical name o...
Definition: SpecialPage.php:583
SpecialPage\including
including( $x=null)
Whether the special page is being evaluated via transclusion.
Definition: SpecialPage.php:226
$wgContLang
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when and is meant to be subclassed with other skins that may override some of its functions The User object contains a reference to a and so rather than having a global skin object we just rely on the global User and get the skin with $wgUser and also has some character encoding functions and other locale stuff The current user interface language is instantiated as and the content language as $wgContLang
Definition: design.txt:56
$out
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output $out
Definition: hooks.txt:783