public function indexAction()
 {
     $this->view->entries = AdminUser::find(array("order" => "id DESC"));
     $this->view->title = $this->helper->translate('Администраторы');
     $this->helper->title()->append($this->view->title);
 }
 public function indexAction()
 {
     $this->view->entries = AdminUser::find(["order" => "id DESC"]);
     $this->helper->title($this->helper->at('Manage Users'), true);
 }