public function StateMachine::ignore in State Machine 7.3
Same name and namespace in other branches
- 7.2 inc/base.inc \StateMachine::ignore()
Whether State Machine to be ignored.
Return value
bool Whether State Machine to be ignored.
2 calls to StateMachine::ignore()
- StateFlowEntity::isActivePublishedRevision in modules/
state_flow_entity/ plugins/ state_flow_entity.inc - Check if the current object is the active published revision.
- StateMachine::__construct in inc/
base.inc - Create instance of StateMachine.
File
- inc/
base.inc, line 245 - Defines the base classes of the state machine.
Class
- StateMachine
- The base class.
Code
public function ignore() {
return FALSE;
}