MediaWiki  1.33.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' => (bool)$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:388
$lang
if(!isset( $args[0])) $lang
Definition: testCompression.php:33
$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 When $user is not it can be in the form of< username >< more info > e g for bot passwords intended to be added to log contexts Fields it might only if the login was with a bot password 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:780
$params
$params
Definition: styleTest.css.php:44
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
name
and how to run hooks for an and one after Each event has a name
Definition: hooks.txt:6
HTMLFormField
The parent class to generate form fields.
Definition: HTMLFormField.php:7
div
div
Definition: parserTests.txt:6850
$output
$output
Definition: SyntaxHighlight.php:334
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))
null
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that When $user is not null
Definition: hooks.txt:780
key
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation use $formDescriptor instead default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message key
Definition: hooks.txt:2154
$value
$value
Definition: styleTest.css.php:49
style
Bar style
Definition: parserTests.txt:218
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:2636