You are here

function _fc_ctools_plugin_type in Field Complete 7

Implements hook_ctools_plugin_type() to inform CTools about the layout plugin.

1 call to _fc_ctools_plugin_type()
fc_ctools_plugin_type in ./fc.module
Implements hook_ctools_plugin_type().

File

./fc.registry.inc, line 10
Field Complete - Provides field-based completeness for any entity - registry.

Code

function _fc_ctools_plugin_type() {
  return array(
    'fields' => array(
      'cache' => TRUE,
      'defaults' => array(
        'field form' => array(),
        'cardinality check' => 'fc_default_field_cardinality',
        'can be empty' => FALSE,
        'zero can be empty' => FALSE,
      ),
    ),
  );
}