Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
100.00% |
1 / 1 |
|
100.00% |
2 / 2 |
CRAP | |
100.00% |
4 / 4 |
AlertCommand | |
100.00% |
1 / 1 |
|
100.00% |
2 / 2 |
2 | |
100.00% |
4 / 4 |
__construct | |
100.00% |
1 / 1 |
1 | |
100.00% |
2 / 2 |
|||
render | |
100.00% |
1 / 1 |
1 | |
100.00% |
2 / 2 |
<?php | |
/** | |
* @file | |
* Contains \Drupal\Core\Ajax\AlertCommand. | |
*/ | |
namespace Drupal\Core\Ajax; | |
/** | |
* AJAX command for a javascript alert box. | |
* | |
* @ingroup ajax | |
*/ | |
class AlertCommand implements CommandInterface { | |
/** | |
* The text to be displayed in the alert box. | |
* | |
* @var string | |
*/ | |
protected $text; | |
/** | |
* Constructs an AlertCommand object. | |
* | |
* @param string $text | |
* The text to be displayed in the alert box. | |
*/ | |
public function __construct($text) { | |
$this->text = $text; | |
} | |
/** | |
* Implements Drupal\Core\Ajax\CommandInterface:render(). | |
*/ | |
public function render() { | |
return array( | |
'command' => 'alert', | |
'text' => $this->text, | |
); | |
} | |
} |