You are here

function defaultcontent_ctools_plugin_type in Default Content 7.2

Same name and namespace in other branches
  1. 7 defaultcontent.module \defaultcontent_ctools_plugin_type()

Implements hook_ctools_plugin_type().

File

./defaultcontent.module, line 398
Module file for the Default content module which allow export and import of default content in a Drupal site.

Code

function defaultcontent_ctools_plugin_type() {
  return array(
    'alter' => array(
      'defaults' => array(
        'export_alter weight' => 0,
      ),
    ),
  );
}