Projet

Général

Profil

Paste
Télécharger (395 octets) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / modules / entityreference / plugins / behavior / views-select-list.inc @ 651307cd

1
<?php
2

    
3
if (module_exists('views')) {
4
  $plugin = array(
5
    'title' => t('Render Views filters as select list'),
6
    'description' => t('Provides a select list for Views filters on this field. This should not be used when there are over 100 entities, as it might cause an out of memory error.'),
7
    'class' => 'EntityReferenceBehavior_ViewsFilterSelect',
8
    'behavior type' => 'field',
9
  );
10
}