MediaWiki  1.33.0
HTMLFormElement.php
Go to the documentation of this file.
1 <?php
2 
10 
11  protected $hideIf = null;
12  protected $modules = null;
13 
14  public function initializeHTMLFormElement( array $config = [] ) {
15  // Properties
16  $this->hideIf = $config['hideIf'] ?? null;
17  $this->modules = $config['modules'] ?? [];
18 
19  // Initialization
20  if ( $this->hideIf ) {
21  $this->addClasses( [ 'mw-htmlform-hide-if' ] );
22  }
23  if ( $this->modules ) {
24  // JS code must be able to read this before infusing (before OOUI is even loaded),
25  // so we put this in a separate attribute (not with the rest of the config).
26  // And it's not needed anymore after infusing, so we don't put it in JS config at all.
27  $this->setAttributes( [ 'data-mw-modules' => implode( ',', $this->modules ) ] );
28  }
29  $this->registerConfigCallback( function ( &$config ) {
30  if ( $this->hideIf !== null ) {
31  $config['hideIf'] = $this->hideIf;
32  }
33  } );
34  }
35 }
36 
37 class HTMLFormFieldLayout extends OOUI\FieldLayout {
39 
40  public function __construct( $fieldWidget, array $config = [] ) {
41  parent::__construct( $fieldWidget, $config );
42 
43  // Traits
44  $this->initializeHTMLFormElement( $config );
45  }
46 
47  protected function getJavaScriptClassName() {
48  return 'mw.htmlform.FieldLayout';
49  }
50 }
51 
52 class HTMLFormActionFieldLayout extends OOUI\ActionFieldLayout {
54 
55  public function __construct( $fieldWidget, $buttonWidget = false, array $config = [] ) {
56  parent::__construct( $fieldWidget, $buttonWidget, $config );
57 
58  // Traits
59  $this->initializeHTMLFormElement( $config );
60  }
61 
62  protected function getJavaScriptClassName() {
63  return 'mw.htmlform.ActionFieldLayout';
64  }
65 }
HTMLFormActionFieldLayout\__construct
__construct( $fieldWidget, $buttonWidget=false, array $config=[])
Definition: HTMLFormElement.php:55
HTMLFormFieldLayout\__construct
__construct( $fieldWidget, array $config=[])
Definition: HTMLFormElement.php:40
HTMLFormActionFieldLayout
Definition: HTMLFormElement.php:52
HTMLFormFieldLayout\getJavaScriptClassName
getJavaScriptClassName()
Definition: HTMLFormElement.php:47
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
initializeHTMLFormElement
initializeHTMLFormElement(array $config=[])
Definition: HTMLFormElement.php:14
$modules
$modules
Definition: HTMLFormElement.php:12
use
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Definition: MIT-LICENSE.txt:10
array
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))
HTMLFormFieldLayout
Definition: HTMLFormElement.php:37
HTMLFormActionFieldLayout\getJavaScriptClassName
getJavaScriptClassName()
Definition: HTMLFormElement.php:62
HTMLFormElement
trait HTMLFormElement
Allows custom data specific to HTMLFormField to be set for OOUI forms.
Definition: HTMLFormElement.php:9