Exakat\Reports\Devoops::Analyzers PHP Method

Analyzers() protected method

protected Analyzers ( )
    protected function Analyzers()
    {
        $css = new \Stdclass();
        $css->displayTitles = true;
        $css->titles = array('Analyzer');
        $css->readOrder = $css->titles;
        $data = array();
        $res = $this->datastore->query('SELECT analyzer FROM analyzed WHERE counts >= 0');
        while ($row = $res->fetchArray()) {
            if (empty($row['analyzer'])) {
                continue;
            }
            $data[] = array('Analyzer' => $row['analyzer']);
        }
        $return = $this->formatText(<<<TEXT
This is the list of analyzers that were run. Those that doesn't have result will not be listed in the 'Analyzers' section.

This may be due to PHP version or PHP configuration incompatibilities.
TEXT
, 'textLead');
        $return .= $this->formatSimpleTable($data, $css);
        return $return;
    }