You are here

function panelizer_schema_2 in Panelizer 7.2

2 calls to panelizer_schema_2()
panelizer_schema in ./panelizer.install
Implements hook_schema().
panelizer_update_7104 in ./panelizer.install
Add the access field.

File

./panelizer.install, line 183
Install, update and uninstall functions for the panelizer module.

Code

function panelizer_schema_2() {
  $schema = panelizer_schema_1();
  $schema['panelizer_defaults']['fields']['access'] = array(
    'type' => 'text',
    'size' => 'big',
    'description' => 'Contains the access control for editing this default.',
    'serialize' => TRUE,
    'object default' => array(),
  );
  return $schema;
}