You are here

openlayers_field.install in Openlayers 7.3

Openlayers field install file.

File

modules/openlayers_field/openlayers_field.install
View source
<?php

/**
 * @file
 * Openlayers field install file.
 */

/**
 * Implements hook_field_schema().
 */
function openlayers_field_field_schema($field) {
  return array(
    'columns' => array(
      'value' => array(
        'type' => 'varchar',
        'length' => 128,
        'not null' => FALSE,
      ),
    ),
  );
}

Functions