abstract class EntityReference_BehaviorHandler_Abstract in Entity reference 7
An abstract implementation of EntityReference_BehaviorHandler.
Hierarchy
- class \EntityReference_BehaviorHandler_Abstract implements EntityReference_BehaviorHandler
Expanded class hierarchy of EntityReference_BehaviorHandler_Abstract
File
- plugins/behavior/ abstract.inc, line 145 
View source
abstract class EntityReference_BehaviorHandler_Abstract implements EntityReference_BehaviorHandler {
  /**
   * The name of the behavior plugin.
   */
  protected $behavior;
  /**
   * The plugin definition.
   */
  protected $plugin;
  public function __construct($behavior) {
    $this->behavior = $behavior;
    ctools_include('plugins');
    $plugin = ctools_get_plugins('entityreference', 'behavior', $behavior);
    $this->plugin = $plugin;
  }
  public function schema_alter(&$schema, $field) {
  }
  public function property_info_alter(&$info, $entity_type, $field, $instance, $field_type) {
  }
  public function views_data_alter(&$data, $field) {
  }
  public function load($entity_type, $entities, $field, $instances, $langcode, &$items) {
  }
  public function is_empty_alter(&$empty, $item, $field) {
  }
  public function validate($entity_type, $entity, $field, $instance, $langcode, $items, &$errors) {
  }
  public function presave($entity_type, $entity, $field, $instance, $langcode, &$items) {
  }
  public function insert($entity_type, $entity, $field, $instance, $langcode, &$items) {
  }
  public function postInsert($entity_type, $entity, $field, $instance) {
  }
  public function update($entity_type, $entity, $field, $instance, $langcode, &$items) {
  }
  public function postUpdate($entity_type, $entity, $field, $instance) {
  }
  public function delete($entity_type, $entity, $field, $instance, $langcode, &$items) {
  }
  public function postDelete($entity_type, $entity, $field, $instance) {
  }
  public function entityPostInsert($entity_type, $entity, $field, $instance) {
  }
  public function entityPostUpdate($entity_type, $entity, $field, $instance) {
  }
  public function entityPostDelete($entity_type, $entity, $field, $instance) {
  }
  public function settingsForm($field, $instance) {
  }
  public function access($field, $instance) {
    return TRUE;
  }
} 
      