You are here

function custom_pagers_update_1 in Custom Pagers 6

Same name and namespace in other branches
  1. 5 custom_pagers.install \custom_pagers_update_1()

File

./custom_pagers.install, line 86
Custom pagers install file.

Code

function custom_pagers_update_1() {
  $ret = array();
  db_add_field($ret, 'custom_pager', 'list_php', array(
    'type' => 'text',
    'not null' => FALSE,
    'size' => 'big',
    'description' => 'Raw PHP to populate this {custom_pager}.',
  ));
  db_add_field($ret, 'custom_pager', 'visibility_php', array(
    'type' => 'text',
    'not null' => FALSE,
    'size' => 'big',
    'description' => 'Raw PHP to determine when the {custom_pager} should be displayed.',
  ));
  return $ret;
}