mirror of
				https://bitbucket.org/jsuto/piler.git
				synced 2025-11-04 14:42:27 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			49 lines
		
	
	
		
			1005 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			1005 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
 | 
						|
class ControllerGroupGroup extends Controller {
 | 
						|
   private $error = array();
 | 
						|
 | 
						|
   public function index(){
 | 
						|
 | 
						|
      $this->id = "content";
 | 
						|
      $this->template = "user/list.tpl";
 | 
						|
      $this->layout = "common/layout-empty";
 | 
						|
 | 
						|
 | 
						|
      $request = Registry::get('request');
 | 
						|
      $db = Registry::get('db');
 | 
						|
      $language = Registry::get('language');
 | 
						|
 | 
						|
      $this->load->model('group/group');
 | 
						|
 | 
						|
 | 
						|
      $this->data['term'] = '';
 | 
						|
 | 
						|
      if(!isset($this->request->get['term']) || strlen($this->request->get['term']) < 2) { die("no data"); }
 | 
						|
 | 
						|
 | 
						|
      /* check if we are admin */
 | 
						|
 | 
						|
      if(Registry::get('admin_user') == 1) {
 | 
						|
         $results = $this->model_group_group->get_groups_by_string($this->request->get['term']);
 | 
						|
 | 
						|
         $i = 0;
 | 
						|
         $s = '[ ';
 | 
						|
 | 
						|
         foreach($results as $result) {
 | 
						|
            $i++;
 | 
						|
            $s .= '{ "id": "' . $i . '", "value": "' . $result['groupname'] . '" },';
 | 
						|
         }
 | 
						|
 | 
						|
         $s = preg_replace("/,$/", "", $s) . " ]";
 | 
						|
 | 
						|
         print $s;
 | 
						|
      }
 | 
						|
   }
 | 
						|
 | 
						|
 | 
						|
}
 | 
						|
 | 
						|
?>
 |