You are here

views_menu_reference.install in Views Menu Reference 7

File

views_menu_reference.install
View source
<?php

/**
 * @field Installation functionality.
 */

/**
 * Implements hook_field_schema().
 */
function views_menu_reference_field_schema($field) {
  $columns = array(
    'mlid' => array(
      'type' => 'int',
      'size' => 'big',
      'unsigned' => FALSE,
      'not null' => TRUE,
    ),
    'depth' => array(
      'type' => 'varchar',
      'length' => 3,
      'not null' => TRUE,
    ),
  );
  return array(
    'columns' => $columns,
    'foreign keys' => array(
      'format' => array(
        'table' => 'menu_links',
        'columns' => array(
          'mlid' => 'mlid',
        ),
      ),
    ),
  );
}

Functions