MediaWiki  1.30.0
HTMLReCaptchaNoCaptchaField.php
Go to the documentation of this file.
1 <?php
2 
7 class HTMLReCaptchaNoCaptchaField extends HTMLFormField {
9  protected $key;
10 
12  protected $error;
13 
20  public function __construct( array $params ) {
21  $params += [ 'error' => null ];
22  parent::__construct( $params );
23 
24  $this->key = $params['key'];
25  $this->error = $params['error'];
26 
27  $this->mName = 'g-recaptcha-response';
28  }
29 
30  public function getInputHTML( $value ) {
31  $out = $this->mParent->getOutput();
32  $lang = htmlspecialchars( urlencode( $this->mParent->getLanguage()->getCode() ) );
33 
34  // Insert reCAPTCHA script, in display language, if available.
35  // Language falls back to the browser's display language.
36  // See https://developers.google.com/recaptcha/docs/faq
37  $out->addHeadItem(
38  'g-recaptchascript',
39  "<script src=\"https://www.google.com/recaptcha/api.js?hl={$lang}\" async defer></script>"
40  );
41  $output = Html::element( 'div', [
42  'class' => [
43  'g-recaptcha',
44  'mw-confirmedit-captcha-fail' => !!$this->error,
45  ],
46  'data-sitekey' => $this->key,
47  ] );
48  $htmlUrlencoded = htmlspecialchars( urlencode( $this->key ) );
49  $output .= <<<HTML
50 <noscript>
51  <div>
52  <div style="width: 302px; height: 422px; position: relative;">
53  <div style="width: 302px; height: 422px; position: absolute;">
54  <iframe src="https://www.google.com/recaptcha/api/fallback?k={$htmlUrlencoded}&hl={$lang}"
55  frameborder="0" scrolling="no"
56  style="width: 302px; height:422px; border-style: none;">
57  </iframe>
58  </div>
59  </div>
60  <div style="width: 300px; height: 60px; border-style: none;
61  bottom: 12px; left: 25px; margin: 0px; padding: 0px; right: 25px;
62  background: #f9f9f9; border: 1px solid #c1c1c1; border-radius: 3px;">
63  <textarea id="g-recaptcha-response" name="g-recaptcha-response"
64  class="g-recaptcha-response"
65  style="width: 250px; height: 40px; border: 1px solid #c1c1c1;
66  margin: 10px 25px; padding: 0px; resize: none;" >
67  </textarea>
68  </div>
69  </div>
70 </noscript>
71 HTML;
72  return $output;
73  }
74 }
HTMLFormField\__construct
__construct( $params)
Initialise the object.
Definition: HTMLFormField.php:389
$lang
if(!isset( $args[0])) $lang
Definition: testCompression.php:33
$params
$params
Definition: styleTest.css.php:40
$output
static configuration should be added through ResourceLoaderGetConfigVars instead can be used to get the real title after the basic globals have been set but before ordinary actions take place $output
Definition: hooks.txt:2198
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
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
HTMLFormField
The parent class to generate form fields.
Definition: HTMLFormField.php:7
$value
$value
Definition: styleTest.css.php:45
style
Bar style
Definition: parserTests.txt:192
HTMLFormField\getInputHTML
getInputHTML( $value)
This function must be implemented to return the HTML to generate the input object itself.
error
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 error
Definition: hooks.txt:2581
name
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 name
Definition: design.txt:12
Html\element
static element( $element, $attribs=[], $contents='')
Identical to rawElement(), but HTML-escapes $contents (like Xml::element()).
Definition: Html.php:231
array
the array() calling protocol came about after MediaWiki 1.4rc1.
$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:781