Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 4 |
TriggerPreviewCommand | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 4 |
render | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 4 |
<?php | |
/** | |
* @file | |
* Contains \Drupal\views\Ajax\TriggerPreviewCommand. | |
*/ | |
namespace Drupal\views\Ajax; | |
use Drupal\Core\Ajax\CommandInterface; | |
/** | |
* Provides an AJAX command for triggering the views live preview. | |
* | |
* This command is implemented in Drupal.AjaxCommands.prototype.viewsTriggerPreview. | |
*/ | |
class TriggerPreviewCommand implements CommandInterface { | |
/** | |
* {@inheritdoc} | |
*/ | |
public function render() { | |
return array( | |
'command' => 'viewsTriggerPreview', | |
); | |
} | |
} |