You are here

public function StateFlowEntity::get_entity_type in State Machine 7.3

10 calls to StateFlowEntity::get_entity_type()
StateFlowEntity::fire_event in modules/state_flow_entity/plugins/state_flow_entity.inc
Extending fire_event() from state_machine's base.inc.
StateFlowEntity::get_active_revision in modules/state_flow_entity/plugins/state_flow_entity.inc
Get the active revision.
StateFlowEntity::get_entity_id_key in modules/state_flow_entity/plugins/state_flow_entity.inc
Get the revision key for this entity type.
StateFlowEntity::get_history_entity in modules/state_flow_entity/plugins/state_flow_entity.inc
Get the state flow history entity.
StateFlowEntity::get_latest_revision in modules/state_flow_entity/plugins/state_flow_entity.inc
Get the latest revision id.

... See full list

File

modules/state_flow_entity/plugins/state_flow_entity.inc, line 199
State Flow implementation of the State Machine class.

Class

StateFlowEntity
@file State Flow implementation of the State Machine class.

Code

public function get_entity_type() {
  if (isset($this->plugin['handler']['entity_type'])) {
    return $this->plugin['handler']['entity_type'];
  }
}