You are here

public function RulesIdentifiableDataWrapper::clear in Rules 7.2

Overridden.

Overrides EntityStructureWrapper::clear

1 call to RulesIdentifiableDataWrapper::clear()
RulesIdentifiableDataWrapper::set in includes/rules.state.inc
Overridden to support setting the data by either the object or the id.

File

includes/rules.state.inc, line 748
Contains the state and data related stuff.

Class

RulesIdentifiableDataWrapper
A wrapper class similar to the EntityDrupalWrapper, but for non-entities.

Code

public function clear() {
  $this->id = NULL;
  parent::clear();
}