You are here

function fieldable_panels_panes_delete in Fieldable Panels Panes (FPP) 7

Delete a fieldable panel pane.

Parameters

int $fpid: A fieldable panel pane ID.

2 calls to fieldable_panels_panes_delete()
fieldable_panels_panes_entity_delete_form_submit in includes/admin.inc
Execute node deletion.
fieldable_panels_panes_services_delete in ./fieldable_panels_panes.services.inc
Delete a fieldable panels pane.
1 string reference to 'fieldable_panels_panes_delete'
fieldable_panels_panes_entity_info in ./fieldable_panels_panes.module
Implements hook_entity_info().

File

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

Code

function fieldable_panels_panes_delete($fpid) {
  fieldable_panels_panes_delete_multiple(array(
    $fpid,
  ));
}