abstract public function menu_token_handler::form_submit in Menu Token 7
This function allows your plugin to act upon form submission. The return value will be added to the $options array and thus should be an array itself.
Note: Only invoked for selected plugins.
4 methods override menu_token_handler::form_submit()
- menu_token_entity_context::form_submit in plugins/
menu_token_entity_context.inc - This function allows your plugin to act upon form submission. The return value will be added to the $options array and thus should be an array itself.
- menu_token_entity_random::form_submit in plugins/
menu_token_entity_random.inc - This function allows your plugin to act upon form submission. The return value will be added to the $options array and thus should be an array itself.
- menu_token_entity_user_defined::form_submit in plugins/
menu_token_entity_user_defined.inc - This function allows your plugin to act upon form submission. The return value will be added to the $options array and thus should be an array itself.
- menu_token_panel_context::form_submit in plugins/
menu_token_panel_context.inc - This function allows your plugin to act upon form submission. The return value will be added to the $options array and thus should be an array itself.
File
- handlers/
menu_token_handler.inc, line 21
Class
- menu_token_handler
- The menu token handler class should be extended by all menu token plugins.
Code
public abstract function form_submit($form, &$form_state);