You are here

public function EntityType::removeBehavior in Entity Construction Kit (ECK) 7.3

Same name and namespace in other branches
  1. 7.2 eck.classes.inc \EntityType::removeBehavior()

Remove behavior.

Parameters

string $name: The name of the behavior.

File

./eck.classes.inc, line 328
Classes for all the different objects used in ECK.

Class

EntityType

Code

public function removeBehavior($name) {
  $this
    ->changeBehavior($name, NULL);
}