OCA\OcSms\Db\ConfigMapper::getNotificationState PHP 메소드

getNotificationState() 공개 메소드

    public function getNotificationState()
    {
        $st = $this->getKey("notification_state");
        // Default state is 1/enabled
        if ($st === false) {
            $st = 1;
        }
        return $st;
    }