예제 #1
0
파일: Groups.php 프로젝트: vijo/movim
 function ajaxHeader()
 {
     $id = new \modl\ItemDAO();
     $view = $this->tpl();
     $view->assign('servers', $id->getGroupServers());
     $header = $view->draw('_groups_header', true);
     Header::fill($header);
 }
예제 #2
0
파일: Group.php 프로젝트: vijo/movim
 function prepareEmpty()
 {
     $id = new \modl\ItemDAO();
     $view = $this->tpl();
     $view->assign('servers', $id->getGroupServers());
     $html = $view->draw('_group_empty', true);
     return $html;
 }