function panelizer_field_attach_submit in Panelizer 7.2
Same name and namespace in other branches
- 7.3 panelizer.module \panelizer_field_attach_submit()
File
- ./
panelizer.module, line 169 - The Panelizer module attaches panels to entities, providing default panels and allowing each panel to be configured independently by privileged users.
Code
function panelizer_field_attach_submit($entity_type, $entity, &$form, &$form_state) {
// Delegate to the handler.
if ($handler = panelizer_entity_plugin_get_handler($entity_type)) {
$handler
->hook_field_attach_submit($entity, $form, $form_state);
}
}