wiki.techinc.nl/includes/widget/SpinnerWidget.php
Amir Sarabadani 7d8768e931 Reorg: Move HTML-related classes out of includes/ to Html/
Bug: T321882
Change-Id: I5dc1f7e9c303cd3f5b9dd7010d6bb470d8400a18
2023-02-16 20:40:01 +01:00

67 lines
1.4 KiB
PHP

<?php
namespace MediaWiki\Widget;
/**
* PHP version of jquery.spinner.
*
* If used with jquery.spinner.styles, can be used to show a
* spinner before JavaScript has loaded.
*
* @copyright 2011-2020 MediaWiki Widgets Team and others; see AUTHORS.txt
* @license MIT
*/
class SpinnerWidget {
private $attributes;
private $content;
/**
* @param array $config Configuration options
*/
public function __construct( array $config = [] ) {
$size = $config['size'] ?? 'small';
$type = $config['type'] ?? 'inline';
$this->attributes = [];
if ( isset( $config['id'] ) ) {
$this->attributes['id'] = $config['id'];
}
// Initialization
$this->attributes['class'] = [
'mw-spinner',
$size === 'small' ? 'mw-spinner-small' : 'mw-spinner-large',
$type === 'inline' ? 'mw-spinner-inline' : 'mw-spinner-block',
];
$this->content =
'<div class="mw-spinner-container">' .
str_repeat( '<div></div>', 12 ) .
'</div>';
}
/**
* Render element into HTML.
* @return string HTML serialization
*/
public function toString() {
return \MediaWiki\Html\Html::rawElement( 'div', $this->attributes, $this->content );
}
/**
* Magic method implementation.
*
* Copied from OOUI\Tag
*
* @return string
*/
public function __toString() {
try {
return $this->toString();
} catch ( \Exception $ex ) {
trigger_error( (string)$ex, E_USER_ERROR );
}
}
}