Owl\Handlers\Events\EmailNotification::notificationIsEnabled PHP Method

notificationIsEnabled() protected method

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