diff options
author | Pierre Schmitz <pierre@archlinux.de> | 2015-06-04 07:31:04 +0200 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2015-06-04 07:58:39 +0200 |
commit | f6d65e533c62f6deb21342d4901ece24497b433e (patch) | |
tree | f28adf0362d14bcd448f7b65a7aaf38650f923aa /vendor/oojs/oojs-ui/php/elements/ButtonElement.php | |
parent | c27b2e832fe25651ef2410fae85b41072aae7519 (diff) |
Update to MediaWiki 1.25.1
Diffstat (limited to 'vendor/oojs/oojs-ui/php/elements/ButtonElement.php')
-rw-r--r-- | vendor/oojs/oojs-ui/php/elements/ButtonElement.php | 102 |
1 files changed, 102 insertions, 0 deletions
diff --git a/vendor/oojs/oojs-ui/php/elements/ButtonElement.php b/vendor/oojs/oojs-ui/php/elements/ButtonElement.php new file mode 100644 index 00000000..f9acf2d8 --- /dev/null +++ b/vendor/oojs/oojs-ui/php/elements/ButtonElement.php @@ -0,0 +1,102 @@ +<?php + +namespace OOUI; + +/** + * Element with a button. + * + * Buttons are used for controls which can be clicked. They can be configured to use tab indexing + * and access keys for accessibility purposes. + * + * @abstract + */ +class ButtonElement extends ElementMixin { + /** + * Button is framed. + * + * @var boolean + */ + protected $framed = false; + + /** + * Button's access key. + * + * @var string + */ + protected $accessKey = null; + + public static $targetPropertyName = 'button'; + + /** + * @param Element $element Element being mixed into + * @param array $config Configuration options + * @param boolean $config['framed'] Render button with a frame (default: true) + * @param string $config['accessKey'] Button's access key + */ + public function __construct( Element $element, array $config = array() ) { + // Parent constructor + $target = isset( $config['button'] ) ? $config['button'] : new Tag( 'a' ); + parent::__construct( $element, $target, $config ); + + // Initialization + $this->element->addClasses( array( 'oo-ui-buttonElement' ) ); + $this->target->addClasses( array( 'oo-ui-buttonElement-button' ) ); + $this->toggleFramed( isset( $config['framed'] ) ? $config['framed'] : true ); + $this->setAccessKey( isset( $config['accessKey'] ) ? $config['accessKey'] : null ); + $this->target->setAttributes( array( + 'role' => 'button', + ) ); + } + + /** + * Toggle frame. + * + * @param boolean $framed Make button framed, omit to toggle + * @chainable + */ + public function toggleFramed( $framed = null ) { + $this->framed = $framed !== null ? !!$framed : !$this->framed; + $this->element->toggleClasses( array( 'oo-ui-buttonElement-framed' ), $this->framed ); + $this->element->toggleClasses( array( 'oo-ui-buttonElement-frameless' ), !$this->framed ); + } + + /** + * Check if button has a frame. + * + * @return boolean Button is framed + */ + public function isFramed() { + return $this->framed; + } + + /** + * Set access key. + * + * @param string $accessKey Button's access key, use empty string to remove + * @chainable + */ + public function setAccessKey( $accessKey ) { + $accessKey = is_string( $accessKey ) && strlen( $accessKey ) ? $accessKey : null; + + if ( $this->accessKey !== $accessKey ) { + if ( $accessKey !== null ) { + $this->target->setAttributes( array( 'accesskey' => $accessKey ) ); + } else { + $this->target->removeAttributes( array( 'accesskey' ) ); + } + $this->accessKey = $accessKey; + } + + return $this; + } + + public function getConfig( &$config ) { + if ( $this->framed !== true ) { + $config['framed'] = $this->framed; + } + if ( $this->accessKey !== null ) { + $config['accessKey'] = $this->accessKey; + } + return parent::getConfig( $config ); + } +} |