Form-aware hooks
The following is a list of valid hook types.
'form_aware_hook' category
See \Zikula\Bundle\HookBundle\Category\FormAwareCategory
.
public const NAME = 'form_aware_hook';
/**
* Display hook for create/edit forms
* dispatches \Zikula\Bundle\HookBundle\FormAwareHook\FormAwareHook
*/
public const TYPE_EDIT = 'edit';
/**
* Display hook for delete forms
* dispatches \Zikula\Bundle\HookBundle\FormAwareHook\FormAwareHook
*/
public const TYPE_DELETE = 'delete';
/**
* Process the results of the edit form after the main form is processed
* dispatches \Zikula\Bundle\HookBundle\FormAwareHook\FormAwareResponse
*/
public const TYPE_PROCESS_EDIT = 'process_edit';
/**
* Process the results of the delete form after the main form is processed
* dispatches \Zikula\Bundle\HookBundle\FormAwareHook\FormAwareResponse
*/
public const TYPE_PROCESS_DELETE = 'process_delete';