You are here

redhen_relation_role.entity.inc in RedHen CRM 7

Redhen Relation Role entity classes

File

modules/redhen_relation/lib/redhen_relation_role.entity.inc
View source
<?php

/**
 * @file
 * Redhen Relation Role entity classes
 */

/**
 * The class used for relation role entities.
 */
class RedhenRelationRole extends Entity {

  // @codingStandardsIgnoreStart
  public $label = '';

  // @codingStandardsIgnoreEnd

  /**
   * Override parent constructor.
   */
  public function __construct(array $values = array()) {
    parent::__construct($values, 'redhen_relation_role');
  }

}

Classes

Namesort descending Description
RedhenRelationRole The class used for relation role entities.