TriggerInterface.php in Build Hooks 8
Same filename and directory in other branches
Namespace
Drupal\build_hooksFile
src/TriggerInterface.phpView source
<?php
namespace Drupal\build_hooks;
/**
* Interface TriggerInterface.
*/
interface TriggerInterface {
/**
* return void
*/
public function execute();
/**
* return void
*/
public function executeCron();
/**
* @param String $nodeType
*
* return void
*/
public function executeNode($nodeType);
/**
* return void
*/
public function showMenu();
}
Interfaces
Name | Description |
---|---|
TriggerInterface | Interface TriggerInterface. |