You are here

function fieldable_panels_panes_update_7105 in Fieldable Panels Panes (FPP) 7

Add support to link pane titles to paths.

File

./fieldable_panels_panes.install, line 296
Fieldable Panels Panes install file.

Code

function fieldable_panels_panes_update_7105() {
  db_add_field('fieldable_panels_panes', 'link', array(
    'type' => 'int',
    'size' => 'tiny',
    'description' => 'Whether or not this entity title will link to another page.',
  ));
  db_add_field('fieldable_panels_panes', 'path', array(
    'type' => 'varchar',
    'length' => 255,
    'description' => 'The path the title should link to.',
  ));
}