You are here

function fieldable_panels_panes_save in Fieldable Panels Panes (FPP) 7

Save a fieldable panel pane.

See also

node_save()

15 calls to fieldable_panels_panes_save()
DrupalFieldablePanelsPanesMigration::createStub in includes/fieldable_panels_pane.migrate.inc
FieldablePanelsPaneEntity::entity_save in plugins/entity/FieldablePanelsPaneEntity.class.php
fieldable_panels_panes_entity_edit_access_page in includes/admin.inc
Page callback to edit access control of an entity pane.
fieldable_panels_panes_entity_edit_form_submit in ./fieldable_panels_panes.module
Submit callback for the pane entity.
fieldable_panels_panes_entity_make_current_page in includes/admin.inc
Callback to make a revision current.

... See full list

2 string references to 'fieldable_panels_panes_save'
fieldable_panels_panes_entity_info in ./fieldable_panels_panes.module
Implements hook_entity_info().
MigrateDestinationFieldablePanelsPanes::import in includes/fieldable_panels_pane.migrate.inc
Import a single fieldable panels pane.

File

./fieldable_panels_panes.module, line 1086
Maintains an entity that appears as panel pane content.

Code

function fieldable_panels_panes_save($entity) {
  return entity_get_controller('fieldable_panels_pane')
    ->save($entity);
}