Page MenuHomeWickedGov Phorge

ElementContentEditable.php
No OneTemporary

Size
3 KB
Referenced Files
None
Subscribers
None

ElementContentEditable.php

<?php
// AUTOMATICALLY GENERATED. DO NOT EDIT.
// Use `composer build` to regenerate.
namespace Wikimedia\IDLeDOM\Helper;
trait ElementContentEditable {
// Underscore is used to avoid conflicts with DOM-reserved names
// phpcs:disable PSR2.Methods.MethodDeclaration.Underscore
// phpcs:disable MediaWiki.NamingConventions.LowerCamelFunctionsName.FunctionName
/**
* Handle an attempt to get a non-existing property on this
* object. The default implementation raises an exception
* but the implementor can choose a different behavior:
* return null (like JavaScript), dynamically create the
* property, etc.
* @param string $prop the name of the property requested
* @return mixed
*/
protected function _getMissingProp( string $prop ) {
$trace = debug_backtrace();
while (
count( $trace ) > 0 &&
$trace[0]['function'] !== "__get"
) {
array_shift( $trace );
}
trigger_error(
'Undefined property' .
' via ' . ( $trace[0]['function'] ?? '' ) . '(): ' . $prop .
' in ' . ( $trace[0]['file'] ?? '' ) .
' on line ' . ( $trace[0]['line'] ?? '' ),
E_USER_NOTICE
);
return null;
}
/**
* Handle an attempt to set a non-existing property on this
* object. The default implementation raises an exception
* but the implementor can choose a different behavior:
* ignore the operation (like JavaScript), dynamically create
* the property, etc.
* @param string $prop the name of the property requested
* @param mixed $value the value to set
*/
protected function _setMissingProp( string $prop, $value ): void {
$trace = debug_backtrace();
while (
count( $trace ) > 0 &&
$trace[0]['function'] !== "__set"
) {
array_shift( $trace );
}
trigger_error(
'Undefined property' .
' via ' . ( $trace[0]['function'] ?? '' ) . '(): ' . $prop .
' in ' . ( $trace[0]['file'] ?? '' ) .
' on line ' . ( $trace[0]['line'] ?? '' ),
E_USER_NOTICE
);
}
// phpcs:enable
/**
* @return string
*/
public function getEnterKeyHint(): string {
'@phan-var \Wikimedia\IDLeDOM\Element $this';
// @var \Wikimedia\IDLeDOM\Element $this
$val = $this->getAttribute( 'enterkeyhint' );
if ( $val !== null ) {
$val = strtr( $val, 'ABCDEFGHIJKLMNOPQRSTUVWXYZ', 'abcdefghijklmnopqrstuvwxyz' );
switch ( $val ) {
case 'enter':
case 'done':
case 'go':
case 'next':
case 'previous':
case 'search':
case 'send':
return $val;
default:
return '';
}
}
return '';
}
/**
* @param string $val
*/
public function setEnterKeyHint( string $val ): void {
'@phan-var \Wikimedia\IDLeDOM\Element $this';
// @var \Wikimedia\IDLeDOM\Element $this
$this->setAttribute( 'enterkeyhint', $val );
}
/**
* @return string
*/
public function getInputMode(): string {
'@phan-var \Wikimedia\IDLeDOM\Element $this';
// @var \Wikimedia\IDLeDOM\Element $this
$val = $this->getAttribute( 'inputmode' );
if ( $val !== null ) {
$val = strtr( $val, 'ABCDEFGHIJKLMNOPQRSTUVWXYZ', 'abcdefghijklmnopqrstuvwxyz' );
switch ( $val ) {
case 'none':
case 'text':
case 'tel':
case 'url':
case 'email':
case 'numeric':
case 'decimal':
case 'search':
return $val;
default:
return '';
}
}
return '';
}
/**
* @param string $val
*/
public function setInputMode( string $val ): void {
'@phan-var \Wikimedia\IDLeDOM\Element $this';
// @var \Wikimedia\IDLeDOM\Element $this
$this->setAttribute( 'inputmode', $val );
}
}

File Metadata

Mime Type
text/x-php
Expires
Tue, Aug 18, 20:33 (2 w, 2 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
db/bd/efc9688fb317a180c8c96729aeda
Default Alt Text
ElementContentEditable.php (3 KB)

Event Timeline