FOF30\Model\DataModel::getBehaviorParam PHP Method

getBehaviorParam() public method

Get a behavior param
public getBehaviorParam ( string $name, mixed $default = null ) : mixed
$name string The name of the param you want to get
$default mixed The default value returned if not set
return mixed
    public function getBehaviorParam($name, $default = null)
    {
        return isset($this->_behaviorParams[$name]) ? $this->_behaviorParams[$name] : $default;
    }