public function Messages()
 {
     parent::__construct();
     $this->title = "Messages";
     $this->model = "Message";
 }
 public function Faqs()
 {
     parent::__construct();
     $this->title = "Foire aux questions";
     $this->model = "Faq";
 }
Exemple #3
0
	public function __construct(){
		parent::__construct();
		$this->title="Statuts";
		$this->model="Statut";
	}
Exemple #4
0
	public function Groupes(){
		parent::__construct();
		$this->title="Groupes";
		$this->model="Groupe";
	}
Exemple #5
0
	public function Users(){
		parent::__construct();
		$this->title="Utilisateurs";
		$this->model="User";
	}
	public function __construct(){
		parent::__construct();
		$this->title="Catégories";
		$this->model="Categorie";
	}
 public function Tickets()
 {
     parent::__construct();
     $this->title = "Tickets";
     $this->model = "Ticket";
 }
Exemple #8
0
	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";
	}
Exemple #9
0
	public function __construct(){
		parent::__construct();
		$this->title="<p style='margin-left:2%'>Foire aux Questions</p>";
		$this->model="Faq";
	}
Exemple #10
0
	public function Alerts(){
		parent::__construct();
		$this->title="Alertes";
		$this->model="Alert";
	}
Exemple #11
0
	public function Tokens(){
		parent::__construct();
		$this->title="Tokens";
		$this->model="Token";
	}
	public function GenericFields(){
		parent::__construct();
		$this->title="Ajout d'un champ";
		$this->model="GenericField";
	}