Newscoop\Services\StatService::getAll PHP Метод

getAll() публичный Метод

public getAll ( )
    public function getAll()
    {
        $stats = array();
        $stats['installationId'] = $this->getInstallationId();
        $stats['server'] = $this->getServer();
        $stats['ipAddress'] = $this->getIp();
        $stats['ramUsed'] = $this->getRamUsed();
        $stats['ramTotal'] = $this->getRamTotal();
        $stats['version'] = $this->getVersion();
        $stats['installMethod'] = $this->getInstallMethod();
        $stats['publications'] = $this->getPublications();
        $stats['issues'] = $this->getIssues();
        $stats['sections'] = $this->getSections();
        $stats['articles'] = $this->getArticles();
        $stats['articlesPublished'] = $this->getArticles(true);
        $stats['languages'] = $this->getLanguages();
        $stats['authors'] = $this->getAuthors();
        $stats['subscribers'] = $this->getSubscribers();
        $stats['backendUsers'] = $this->getSubscribers(1);
        $stats['images'] = $this->getImages();
        $stats['attachments'] = $this->getAttachments();
        $stats['topics'] = $this->getTopics();
        $stats['comments'] = $this->getComments();
        $stats['hits'] = $this->getHits();
        return $stats;
    }