Neos\Neos\Ui\TypoScript\Helper\ModulesHelper::isAvailable PHP Method

isAvailable() public method

Checks, whether a module is available to the current user
public isAvailable ( string $moduleName ) : boolean
$moduleName string
return boolean
    public function isAvailable($moduleName)
    {
        return $this->isEnabled($moduleName) && $this->isAllowed($moduleName);
    }