CommandInterface.php 329 B

1234567891011121314151617181920
  1. <?php
  2. namespace Drupal\Core\Ajax;
  3. /**
  4. * AJAX command interface.
  5. *
  6. * All AJAX commands passed to AjaxResponse objects should implement these
  7. * methods.
  8. *
  9. * @ingroup ajax
  10. */
  11. interface CommandInterface {
  12. /**
  13. * Return an array to be run through json_encode and sent to the client.
  14. */
  15. public function render();
  16. }