You are here

function fieldable_panels_panes_form_ctools_export_ui_edit_item_form_alter in Fieldable Panels Panes (FPP) 7

Implements hook_form_FORM_ID_alter() for ctools_export_ui_edit_item_form().

File

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

Code

function fieldable_panels_panes_form_ctools_export_ui_edit_item_form_alter(&$form, &$form_state, $form_id) {

  // Minor improvements to the FPP bundle/type form.
  if (isset($form_state['plugin']['name']) && $form_state['plugin']['name'] == 'fieldable_panels_pane') {
    $form['info']['description']['#description'] = t('The administrative description of this type. Also used as the icon tooltip when attempting to add an item of this type via the Panels interface.');
  }
}