SampleController::init PHP Method

init() public method

public init ( )
    public function init()
    {
        $this->before[] = 'beforeAction';
        if (self::$beforeCallback) {
            $this->before[] = self::$beforeCallback;
        }
    }