Owl\Handlers\Events\EmailNotification::notificationIsEnabled PHP Метод

notificationIsEnabled() защищенный Метод

通知設定をONにしてるかどうかチェックする
protected notificationIsEnabled ( string $type, integer $userId ) : boolean
$type string
$userId integer
Результат boolean
    protected function notificationIsEnabled($type, $userId)
    {
        $colomnName = $type . '_notification_flag';
        $flags = (array) $this->mailNotifyService->getSettings($userId);
        return !!$flags[$colomnName];
    }