MediaWiki  1.29.1
HTMLReCaptchaField.php
Go to the documentation of this file.
1 <?php
2 
9  protected $key;
10 
12  protected $theme;
13 
15  protected $secure;
16 
18  protected $error;
19 
28  public function __construct( array $params ) {
29  $params += [
30  'secure' => true,
31  'error' => null,
32  ];
33  parent::__construct( $params );
34 
35  $this->key = $params['key'];
36  $this->theme = $params['theme'];
37  $this->secure = $params['secure'];
38  $this->error = $params['error'];
39  }
40 
41  public function getInputHTML( $value ) {
42  $attribs = $this->getAttributes( [ 'tabindex' ] ) + [ 'theme' => $this->theme ];
43  $js = 'var RecaptchaOptions = ' . Xml::encodeJsVar( $attribs );
44  $widget = recaptcha_get_html( $this->key, $this->error, $this->secure );
45  return Html::inlineScript( $js ) . $widget;
46  }
47 
48  public function skipLoadData( $request ) {
49  return true;
50  }
51 }
$request
error also a ContextSource you ll probably need to make sure the header is varied on $request
Definition: hooks.txt:2612
$params
$params
Definition: styleTest.css.php:40
Html\inlineScript
static inlineScript( $contents)
Output a "<script>" tag with the given contents.
Definition: Html.php:583
Xml\encodeJsVar
static encodeJsVar( $value, $pretty=false)
Encode a variable of arbitrary type to JavaScript.
Definition: Xml.php:627
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
HTMLReCaptchaField\$secure
bool $secure
Use secure connection to ReCaptcha.
Definition: HTMLReCaptchaField.php:15
key
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 but I prefer the flexibility This should also do the output encoding The system allocates a global one in $wgOut Title Represents the title of an and does all the work of translating among various forms such as plain database key
Definition: design.txt:25
HTMLReCaptchaField\__construct
__construct(array $params)
Parameters:
Definition: HTMLReCaptchaField.php:28
HTMLReCaptchaField\getInputHTML
getInputHTML( $value)
This function must be implemented to return the HTML to generate the input object itself.
Definition: HTMLReCaptchaField.php:41
recaptcha_get_html
recaptcha_get_html( $pubkey, $error=null, $use_ssl=false)
Gets the challenge HTML (javascript and non-javascript version).
Definition: recaptchalib.php:106
HTMLFormField
The parent class to generate form fields.
Definition: HTMLFormField.php:7
$attribs
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned and may include noclasses after processing & $attribs
Definition: hooks.txt:1956
HTMLReCaptchaField\$error
string $error
Error returned by ReCaptcha in the previous round.
Definition: HTMLReCaptchaField.php:18
HTMLReCaptchaField
Creates a ReCaptcha widget.
Definition: HTMLReCaptchaField.php:7
$value
$value
Definition: styleTest.css.php:45
HTMLReCaptchaField\$key
string $key
Public key parameter to be passed to ReCaptcha.
Definition: HTMLReCaptchaField.php:9
error
&</p >< p >< sup id="cite_ref-blank_1-1" class="reference">< a href="#cite_note-blank-1"> &</p >< div class="mw-references-wrap">< ol class="references">< li id="cite_note-blank-1">< span class="mw-cite-backlink"> ↑< sup >< a href="#cite_ref-blank_1-0"></a ></sup >< sup >< a href="#cite_ref-blank_1-1"></a ></sup ></span >< span class="reference-text">< span class="error mw-ext-cite-error" lang="en" dir="ltr"> Cite error
Definition: citeParserTests.txt:219
HTMLReCaptchaField\skipLoadData
skipLoadData( $request)
Skip this field when collecting data.
Definition: HTMLReCaptchaField.php:48
HTMLReCaptchaField\$theme
string $theme
Theme parameter to be passed to ReCaptcha.
Definition: HTMLReCaptchaField.php:12
array
the array() calling protocol came about after MediaWiki 1.4rc1.
HTMLFormField\getAttributes
getAttributes(array $list)
Returns the given attributes from the parameters.
Definition: HTMLFormField.php:997