17 lines
306 B
PHP
17 lines
306 B
PHP
<?php
|
|
|
|
/* For licensing terms, see /license.txt */
|
|
|
|
/**
|
|
* Interface HookDocumentItemActionEventInterface.
|
|
*/
|
|
interface HookDocumentItemActionEventInterface extends HookEventInterface
|
|
{
|
|
/**
|
|
* @param $type
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function notifyDocumentItemAction($type);
|
|
}
|