コード例 #1
0
 public function Messages()
 {
     parent::__construct();
     $this->title = "Messages";
     $this->model = "Message";
 }
コード例 #2
0
 public function Faqs()
 {
     parent::__construct();
     $this->title = "Foire aux questions";
     $this->model = "Faq";
 }
コード例 #3
0
ファイル: Statuts.php プロジェクト: aleboisselier/helpdesk
	public function __construct(){
		parent::__construct();
		$this->title="Statuts";
		$this->model="Statut";
	}
コード例 #4
0
ファイル: Groupes.php プロジェクト: aleboisselier/helpdesk
	public function Groupes(){
		parent::__construct();
		$this->title="Groupes";
		$this->model="Groupe";
	}
コード例 #5
0
ファイル: Users.php プロジェクト: aleboisselier/helpdesk
	public function Users(){
		parent::__construct();
		$this->title="Utilisateurs";
		$this->model="User";
	}
コード例 #6
0
ファイル: Categories.php プロジェクト: aleboisselier/helpdesk
	public function __construct(){
		parent::__construct();
		$this->title="Catégories";
		$this->model="Categorie";
	}
コード例 #7
0
ファイル: Tickets.php プロジェクト: nicolasBREYNAERT/helpdesk
 public function Tickets()
 {
     parent::__construct();
     $this->title = "Tickets";
     $this->model = "Ticket";
 }
コード例 #8
0
ファイル: Tickets.php プロジェクト: aleboisselier/helpdesk
	public function __construct(){
		parent::__construct();
		global $config;
		$this->title="Tickets <a class='btn btn-primary' href='".$config['siteUrl']."tickets/frm' style='margin-left:2%;'>Ajouter...</a>";
		$this->model="Ticket";
	}
コード例 #9
0
ファイル: Faqs.php プロジェクト: aleboisselier/helpdesk
	public function __construct(){
		parent::__construct();
		$this->title="<p style='margin-left:2%'>Foire aux Questions</p>";
		$this->model="Faq";
	}
コード例 #10
0
ファイル: Alerts.php プロジェクト: aleboisselier/helpdesk
	public function Alerts(){
		parent::__construct();
		$this->title="Alertes";
		$this->model="Alert";
	}
コード例 #11
0
ファイル: Tokens.php プロジェクト: aleboisselier/helpdesk
	public function Tokens(){
		parent::__construct();
		$this->title="Tokens";
		$this->model="Token";
	}
コード例 #12
0
	public function GenericFields(){
		parent::__construct();
		$this->title="Ajout d'un champ";
		$this->model="GenericField";
	}