示例#1
0
 function  __construct() {
   parent::__construct();
   $this->objet_periodes=new ClassPeriodes();
   $_SESSION['choix_evolution']=isset($_SESSION['choix_evolution'])?$_SESSION['choix_evolution']:'Catégories';
   $this->choix_evolution=isset($_POST['evolution'])?$_POST['evolution']:(isset($_GET['evolution'])?$_GET['evolution']:Null);
   if( $this->choix_evolution) $_SESSION['choix_evolution']=$this->choix_evolution;
   $this->current_onglet=isset($_SESSION['current_onglet']['id'])?$_SESSION['current_onglet']['id']:0;
   $this->temp=get_user_temp_directory();    
 }
示例#2
0
 function  __construct() {
   parent::__construct();
   $this->objet_periodes=new ClassPeriodes();
   $this->periodes_calendrier=$this->objet_periodes->get_periodes_calendrier();
   $_SESSION['stats_choix']=isset($_POST['choix']) ? $_POST['choix'] :(isset($_GET['choix']) ? $_GET['choix'] : 'eleves');
   $this->id_calendrier=isset($_POST['id_calendrier'])? $_POST['id_calendrier']:(isset($_GET['id_calendrier'])? $_GET['id_calendrier']:null);
   $this->posted=isset($_POST['posted'])? $_POST['posted']:(isset($_GET['posted'])? $_GET['posted']:null);
   $this->month_selected=isset($_POST['month'])? $_POST['month']:(isset($_GET['month'])? $_GET['month']:null);
   $this->login=isset($_POST['login'])? $_POST['login']:(isset($_GET['login'])? $_GET['login']:null);
   $this->statut=isset($_SESSION['stats_choix'])? $_SESSION['stats_choix']:'eleves' ;
   $this->du=isset($_POST['du'])? $_POST['du']:(isset($_GET['du'])? $_GET['du']:Gepi_Date::get_date_begin_yearschool());
   $this->au=isset($_POST['au'])? $_POST['au']:(isset($_GET['au'])? $_GET['au']:date('d/m/Y'));
   $this->etab_all=isset($_POST['etab_all'])? $_POST['etab_all']:(isset($_GET['etab_all'])? $_GET['etab_all']:null);
   $this->eleve_all=isset($_POST['eleve_all'])? $_POST['eleve_all']:(isset($_GET['eleve_all'])? $_GET['eleve_all']:null);
   $this->pers_all=isset($_POST['pers_all'])? $_POST['pers_all']:(isset($_GET['pers_all'])? $_GET['pers_all']:null);
   $this->classes_selected=isset($_POST['classes'])? $_POST['classes']:(isset($_GET['classes'])? $_GET['classes']:null);
   $this->del_type=isset($_POST['del_type'])? $_POST['del_type']:(isset($_GET['del_type'])? $_GET['del_type']:null);
   $this->del=isset($_POST['del'])? $_POST['del']:(isset($_GET['del'])? $_GET['del']:null);    
 }
 /**
  * Constructeur, appelant le constructeur parent
  * @param string $a nom de la méthode (action) à appeler
  */
 public function __construct($a)
 {
     parent::__construct("_generateur", $a);
 }
示例#4
0
 function __construct() {
   parent::__construct();
   $this->data = new ImportModele();
 }
示例#5
0
  function  __construct() {
    parent::__construct();
    $this->modele_incidents=new Modele_Incidents();

  }
示例#6
0
 function  __construct() {
   parent::__construct();
 }
示例#7
0
 /**
  * Constructeur : fait appel au contrusteur parent
  * @param string $a nom de l'action à appeler
  */
 public function __construct($a)
 {
     parent::__construct("_default", $a);
 }
 /**
  * Constructeur, fait appel au constructeur parent
  * @param string $a méthode (action) à exécuter 
  */
 public function __construct($a)
 {
     parent::__construct("authentification", $a);
 }