Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
| Total | |
0 / 0 |
|
100.00% |
0 / 0 |
CRAP | |
100.00% |
0 / 0 |
|
| <?php | |
| /** | |
| * @file | |
| * Contains \Drupal\Core\Operations\OperationsProviderInterface. | |
| */ | |
| namespace Drupal\Core\Operations; | |
| /** | |
| * Defines an interface for providing operations links. | |
| */ | |
| interface OperationsProviderInterface { | |
| /** | |
| * Returns a list of operation links available for this block. | |
| * | |
| * @return array | |
| * Array of operation links. | |
| */ | |
| public function getOperationLinks(); | |
| } |