MediaWiki  1.29.2
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
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
div
div
Definition: parserTests.txt:6533
$output
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist Do not use this to implement individual filters if they are compatible with the ChangesListFilter and ChangesListFilterGroup structure use sub classes of those in conjunction with the ChangesListSpecialPageStructuredFilters hook This hook can be used to implement filters that do not implement that or custom behavior that is not an individual filter e g Watchlist and Watchlist you will want to construct new ChangesListBooleanFilter or ChangesListStringOptionsFilter objects When constructing you specify which group they belong to You can reuse existing or create your you must register them with $special registerFilterGroup removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content as context as context the output can only depend on parameters provided to this hook not on global state indicating whether full HTML should be generated If generation of HTML may be but other information should still be present in the ParserOutput object & $output
Definition: hooks.txt:1049
$value
$value
Definition: styleTest.css.php:45
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
style
Bar style
Definition: parserTests.txt:184
HTMLFormField\getInputHTML
getInputHTML( $value)
This function must be implemented to return the HTML to generate the input object itself.
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:783