diff --git a/fieldable_panels_panes.install b/fieldable_panels_panes.install index 8130aea..5a4a16f 100644 --- a/fieldable_panels_panes.install +++ b/fieldable_panels_panes.install @@ -32,8 +32,9 @@ function fieldable_panels_panes_uninstall() { // Variables. variable_del('fieldable_panels_panes_skip_default_type'); variable_del('fpp_blocks_expose'); - variable_del('fpp_revision_locking'); variable_del('fpp_change_reusability'); + variable_del('fpp_hide_contextual_links'); + variable_del('fpp_revision_locking'); // Delete any variables that begin with 'fpp_expose_'. $results = db_query('SELECT name FROM {variable} WHERE name LIKE :var', array(':var' => 'fpp_expose_%'))->fetchCol(); diff --git a/fieldable_panels_panes.module b/fieldable_panels_panes.module index aebeb89..d4afe96 100644 --- a/fieldable_panels_panes.module +++ b/fieldable_panels_panes.module @@ -1299,6 +1299,7 @@ function fieldable_panels_panes_entity_edit_form($form, &$form_state) { '#type' => 'checkbox', '#title' => t('Make this entity reusable'), '#default_value' => $entity->reusable, + '#description' => t('A reusable pane may be used multiple times on the same page or on other pages. A non-reusable pane may not be added to another page once it is created and added to this page. This option may not be changed after the pane is created.'), ); $form['reusable']['category'] = array( diff --git a/plugins/content_types/fieldable_panels_pane.inc b/plugins/content_types/fieldable_panels_pane.inc index d18638f..0cc78ee 100644 --- a/plugins/content_types/fieldable_panels_pane.inc +++ b/plugins/content_types/fieldable_panels_pane.inc @@ -164,13 +164,10 @@ function fieldable_panels_panes_fieldable_panels_pane_content_type_admin_title($ $output = t('Deleted/removed entity pane'); } - // Indicate whether the FPP is reusable. + // Indicate when the FPP is reusable. if (!empty($entity->reusable)) { $output .= ' (' . t('reusable') . ')'; } - else { - $output .= ' (' . t('not reusable') . ')'; - } return $output; }