summaryrefslogtreecommitdiff
path: root/vendor/oojs/oojs-ui/php/mixins/AccessKeyedElement.php
blob: eb4b79ea3edafdc5f5ffe634628733f82b3c57cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<?php

namespace OOUI;

/**
 * Element with an accesskey.
 *
 * Accesskeys allow an user to go to a specific element by using
 * a shortcut combination of a browser specific keys + the key
 * set to the field.
 *
 * @abstract
 */
class AccessKeyedElement extends ElementMixin {
	/**
	 * Accesskey
	 *
	 * @var string
	 */
	protected $accessKey = null;

	public static $targetPropertyName = 'accessKeyed';

	/**
	 * @param Element $element Element being mixed into
	 * @param array $config Configuration options
	 * @param string $config['accessKey'] AccessKey. If not provided, no accesskey will be added
	 */
	public function __construct( Element $element, array $config = array() ) {
		// Parent constructor
		$target = isset( $config['accessKeyed'] ) ? $config['accessKeyed'] : $element;
		parent::__construct( $element, $target, $config );

		// Initialization
		$this->setAccessKey(
			isset( $config['accessKey'] ) ? $config['accessKey'] : null
		);
	}

	/**
	 * Set access key.
	 *
	 * @param string $accessKey Tag'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;
	}

	/**
	 * Get AccessKey.
	 *
	 * @return string Accesskey string
	 */
	public function getAccessKey() {
		return $this->accessKey;
	}

	public function getConfig( &$config ) {
		if ( $this->accessKey !== null ) {
			$config['accessKey'] = $this->accessKey;
		}
		return parent::getConfig( $config );
	}
}