. * */ namespace Vvveb\Controller\Content; use Vvveb\Controller\Base; class Taxonomy extends Base { function index() { $view = $this->view; $taxonomies = new \Vvveb\Sql\taxonomySQL(); $limit = 10000; $options = [ 'limit' => $limit, ] + $this->global; $results = $taxonomies->getAll($options); if ($results) { foreach ($results as &$category) { } } $view->taxonomies = $results; } }