ThrobberPluginInterface.php in Ajax loader 8
Namespace
Drupal\ajax_loaderFile
src/ThrobberPluginInterface.phpView source
<?php
namespace Drupal\ajax_loader;
/**
* Interface ThrobberInterface.
*/
interface ThrobberPluginInterface {
/**
* Returns markup for throbber.
*/
public function getMarkup();
/**
* Returns path to css file.
*/
public function getCssFile();
/**
* Returns human readable label.
*/
public function getLabel();
}
Interfaces
Name | Description |
---|---|
ThrobberPluginInterface | Interface ThrobberInterface. |