You are here

public function PowerMenuHandlerInterface::configurationFormSubmit in Power Menu 7.2

Submit callback for the form returned by configurationForm().

This method should both return the new options and set them internally.

Parameters

array $form: The form returned by configurationForm().

array $form_state: The complete form state.

Return value

array The new options array for this callback.

3 methods override PowerMenuHandlerInterface::configurationFormSubmit()
PowerMenuNodeHandler::configurationFormSubmit in plugins/menu_handlers/PowerMenuNodeHandler.class.php
PowerMenuPathHandler::configurationFormSubmit in plugins/menu_handlers/PowerMenuPathHandler.class.php
PowerMenuTaxonomyHandler::configurationFormSubmit in plugins/menu_handlers/PowerMenuTaxonomyHandler.class.php

File

plugins/menu_handlers/PowerMenuHandler.interface.php, line 42

Class

PowerMenuHandlerInterface
Interface representing a power menu handler.

Code

public function configurationFormSubmit(array $form, array &$form_state);