DNProject::isSection PHP 메소드

isSection() 공개 메소드

Is this project currently in a controller that is handling it or performing a sub-task?
public isSection ( ) : boolean
리턴 boolean
    public function isSection()
    {
        $controller = Controller::curr();
        $project = $controller->getField('CurrentProject');
        return $project && $this->ID == $project->ID;
    }