taxonomy-index.inc 529 B

12345678910111213141516
  1. <?php
  2. /**
  3. * @file
  4. * CTools plugin declaration for taxonomy-index behavior.
  5. */
  6. if (module_exists('taxonomy')) {
  7. $plugin = array(
  8. 'title' => t('Taxonomy index'),
  9. 'description' => t('Include the term references created by instances of this field carried by node entities in the core {taxonomy_index} table. This will allow various modules to handle them like core term_reference fields.'),
  10. 'class' => 'EntityReferenceBehavior_TaxonomyIndex',
  11. 'behavior type' => 'instance',
  12. 'force enabled' => TRUE,
  13. );
  14. }