DNProject::isSection PHP Method

isSection() public method

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