OperationsProviderInterface.php 323 B

123456789101112131415161718
  1. <?php
  2. namespace Drupal\Core\Operations;
  3. /**
  4. * Defines an interface for providing operations links.
  5. */
  6. interface OperationsProviderInterface {
  7. /**
  8. * Returns a list of operation links available for this block.
  9. *
  10. * @return array
  11. * Array of operation links.
  12. */
  13. public function getOperationLinks();
  14. }