You are here

class PartyActivityType in Party 8.2

Same name and namespace in other branches
  1. 7 modules/party_activity/party_activity_type.entity.inc \PartyActivityType

Entity class for party activity types

Hierarchy

Expanded class hierarchy of PartyActivityType

1 string reference to 'PartyActivityType'
party_activity_entity_info in modules/party_activity/party_activity.module
Implements hook_entity_info().

File

modules/party_activity/party_activity_type.entity.inc, line 9
Entity and Controller classes for the PArty Activity Type entities

View source
class PartyActivityType extends Entity {
  public $type;
  public $label;
  public function __construct($values = array()) {
    parent::__construct($values, 'party_activity_type');
  }

}

Members