phpbb\notification\type\report_pm::is_available PHP Method

is_available() public method

Is this type available to the current user (defines whether or not it will be shown in the UCP Edit notification options)
public is_available ( ) : boolean
return boolean True/False whether or not this is available to the user
    public function is_available()
    {
        $m_approve = $this->auth->acl_getf($this->permission, true);
        return !empty($m_approve);
    }