Exemplo n.º 1
0
 function actionManageUsers()
 {
     $usersLogic = new UsersLogic();
     // Assign variables to the template
     $temp = $usersLogic->retrieveAllByName();
     $this->actionTpl->assign('users', $temp);
     $content = new Page($this->actionTpl->fetch('templates/admin.users.list.tpl'), t('admin.manageusers'), $this->menusAdmin);
     // Display the action template into the master template
     $this->display($content);
 }