MediaWiki  1.28.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( 'showbots', false );
43  $opts->add( 'hidepatrolled', false );
44  $opts->add( 'limit', 50 );
45  $opts->add( 'offset', '' );
46 
48 
49  if ( $par !== null ) {
50  $opts->setValue( is_numeric( $par ) ? 'limit' : 'like', $par );
51  }
52 
53  $opts->validateIntBounds( 'limit', 0, 500 );
54 
55  $this->opts = $opts;
56 
57  if ( !$this->including() ) {
58  $this->setTopText();
59  $this->buildForm();
60  }
61 
62  $pager = new NewFilesPager( $this->getContext(), $opts );
63 
64  $out->addHTML( $pager->getBody() );
65  if ( !$this->including() ) {
66  $out->addHTML( $pager->getNavigationBar() );
67  }
68  }
69 
70  protected function buildForm() {
71  $formDescriptor = [
72  'like' => [
73  'type' => 'text',
74  'label-message' => 'newimages-label',
75  'name' => 'like',
76  ],
77 
78  'showbots' => [
79  'type' => 'check',
80  'label-message' => 'newimages-showbots',
81  'name' => 'showbots',
82  ],
83 
84  'hidepatrolled' => [
85  'type' => 'check',
86  'label-message' => 'newimages-hidepatrolled',
87  'name' => 'hidepatrolled',
88  ],
89 
90  'limit' => [
91  'type' => 'hidden',
92  'default' => $this->opts->getValue( 'limit' ),
93  'name' => 'limit',
94  ],
95 
96  'offset' => [
97  'type' => 'hidden',
98  'default' => $this->opts->getValue( 'offset' ),
99  'name' => 'offset',
100  ],
101  ];
102 
103  if ( $this->getConfig()->get( 'MiserMode' ) ) {
104  unset( $formDescriptor['like'] );
105  }
106 
107  if ( !$this->getUser()->useFilePatrol() ) {
108  unset( $formDescriptor['hidepatrolled'] );
109  }
110 
111  $form = HTMLForm::factory( 'ooui', $formDescriptor, $this->getContext() )
112  ->setWrapperLegendMsg( 'newimages-legend' )
113  ->setSubmitTextMsg( 'ilsubmit' )
114  ->setMethod( 'get' )
115  ->prepareForm()
116  ->displayForm( false );
117  }
118 
119  protected function getGroupName() {
120  return 'changes';
121  }
122 
126  function setTopText() {
128 
129  $message = $this->msg( 'newimagestext' )->inContentLanguage();
130  if ( !$message->isDisabled() ) {
131  $this->getOutput()->addWikiText(
132  Html::rawElement( 'p',
133  [ 'lang' => $wgContLang->getHtmlCode(), 'dir' => $wgContLang->getDir() ],
134  "\n" . $message->plain() . "\n"
135  ),
136  /* $lineStart */ false,
137  /* $interface */ false
138  );
139  }
140  }
141 }
Helper class to keep track of options when mixing links and form elements.
Definition: FormOptions.php:35
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:802
getContext()
Gets the context this SpecialPage is executed in.
setValue($name, $value, $force=false)
Use to set the value of an option.
static rawElement($element, $attribs=[], $contents= '')
Returns an HTML element in a string.
Definition: Html.php:209
static factory($displayFormat)
Construct a HTMLForm object for given display type.
Definition: HTMLForm.php:275
msg()
Wrapper around wfMessage that sets the current context.
including($x=null)
Whether the special page is being evaluated via transclusion.
getOutput()
Get the OutputPage being used for this instance.
when a variable name is used in a it is silently declared as a new local masking the global
Definition: design.txt:93
addHelpLink($to, $overrideBaseUrl=false)
Adds help link with an icon via page indicators.
outputHeader($summaryMessageKey= '')
Outputs a summary message on top of special pages Per default the message key is the canonical name o...
fetchValuesFromRequest(WebRequest $r, $optionKeys=null)
Fetch values for all options (or selected options) from the given WebRequest, making them available f...
Shortcut to construct an includable special page.
setTopText()
Send the text to be displayed above the options.
setHeaders()
Sets headers - this should be called from the execute() method of all derived classes! ...
add($name, $default, $type=self::AUTO)
Add an option to be handled by this FormOptions instance.
Definition: FormOptions.php:78
validateIntBounds($name, $min, $max)
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
getUser()
Shortcut to get the User executing this instance.
getConfig()
Shortcut to get main config object.
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 local content language as $wgContLang
Definition: design.txt:56
getRequest()
Get the WebRequest being used for this instance.