Файл: concrete5.7.5.6/concrete/controllers/single_page/dashboard.php
Строк: 29
<?php
namespace ConcreteControllerSinglePage;
use ConcreteCorePageControllerDashboardPageController;
use Loader;
use Page;
use Permissions;
class Dashboard extends DashboardPageController {
public $helpers = array('form');
public function view() {
$this->enableNativeMobile();
$categories = array();
$c = Page::getCurrentPage();
$children = $c->getCollectionChildrenArray(true);
foreach($children as $cID) {
$nc = Page::getByID($cID, 'ACTIVE');
$ncp = new Permissions($nc);
if ($ncp->canRead() && (!$nc->getAttribute('exclude_nav'))) {
$categories[] = $nc;
}
}
$this->set('categories', $categories);
}
}