MediaWiki  1.33.0
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 }
$params
$params
Definition: styleTest.css.php:44
Xml\encodeJsVar
static encodeJsVar( $value, $pretty=false)
Encode a variable of arbitrary type to JavaScript.
Definition: Xml.php:659
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
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:1985
HTMLReCaptchaField\$error
string $error
Error returned by ReCaptcha in the previous round.
Definition: HTMLReCaptchaField.php:18
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))
$request
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 also a ContextSource after deleting those rows but within the same transaction you ll probably need to make sure the header is varied on $request
Definition: hooks.txt:2636
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
HTMLReCaptchaField
Creates a ReCaptcha widget.
Definition: HTMLReCaptchaField.php:7
$value
$value
Definition: styleTest.css.php:49
HTMLReCaptchaField\$key
string $key
Public key parameter to be passed to ReCaptcha.
Definition: HTMLReCaptchaField.php:9
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
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
HTMLFormField\getAttributes
getAttributes(array $list)
Returns the given attributes from the parameters.
Definition: HTMLFormField.php:996