Go to the documentation of this file.
22 'revisiondelete' =>
'SpecialPageAction',
24 'string' =>
'NamedDummyAction',
25 'declared' =>
'NonExistingClassName',
26 'callable' => [ $this,
'dummyActionCallback' ],
47 [
'dummy',
'DummyAction' ],
48 [
'string',
'NamedDummyAction' ],
49 [
'callable',
'CalledDummyAction' ],
50 [
'object',
'InstantiatedDummyAction' ],
53 [
'DUMMY',
'DummyAction' ],
54 [
'STRING',
'NamedDummyAction' ],
58 [
'undeclared', null ],
72 $this->assertSame( $expected !==
null, $exists );
79 $this->assertTrue( $exists );
91 $this->assertEquals( $expected ?:
'nosuchaction', $actionName );
99 $this->assertEquals(
'edit', $actionName );
107 $this->assertEquals(
'view', $actionName );
113 $context->getRequest()->setVal(
'revisiondelete',
true );
116 $this->assertEquals(
'revisiondelete', $actionName );
125 $this->assertEquals(
'view', $actionName );
137 $this->
assertType( $expected ?:
'null', $action );
143 $this->assertFalse( $exists );
150 $this->assertEquals(
'view', $actionName );
157 $this->assertNull( $action );
163 $this->assertTrue( $exists );
170 $this->assertEquals(
'nosuchaction', $actionName );
177 $this->assertFalse( $action );
static getActionName(IContextSource $context)
Get the action that will be executed, not necessarily the one passed passed through the "action" requ...
WebRequest clone which takes values from a provided array.
testActionFactory( $requestedAction, $expected)
actionProvider
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 also a ContextSource after deleting those rows but within the same transaction you ll probably need to make sure the header is varied on and they can depend only on the ResourceLoaderContext $context
getName()
Return the name of the action this object responds to.
testGetActionName_historysubmitWorkaround()
testDisabledAction_factoryReturnsFalse()
testGetActionName( $requestedAction, $expected)
actionProvider
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
Actions are things which can be done to pages (edit, delete, rollback, etc).
testGetActionName_editredlinkWorkaround()
An IContextSource implementation which will inherit context from another source but allow individual ...
static factory(Title $title)
Create a WikiPage object of the appropriate class for the given title.
testActionExists_doesNotRequireInstantiation()
testNull_canNotBeInstantiated()
testActionExists( $requestedAction, $expected)
actionProvider
testGetActionName_whenCanNotUseWikiPage_defaultsToView()
static makeTitle( $ns, $title, $fragment='', $interwiki='')
Create a new Title from a namespace index and a DB key.
testGetActionName_revisiondeleteWorkaround()
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 also a ContextSource after deleting those rows but within the same transaction you ll probably need to make sure the header is varied on $request
getContext( $requestedAction=null)
testDisabledAction_exists()
static getMain()
Static methods.
testDisabledAction_isNotResolved()
static exists( $name)
Check if a given action is recognised, even if it's disabled.
you have access to all of the normal MediaWiki so you can get a DB use the etc For full docs on the Maintenance class
show()
The main action entry point.
static factory( $action, Page $page, IContextSource $context=null)
Get an appropriate Action subclass for the given action.
testNull_defaultsToView()