コード例 #1
0
ファイル: nb_reserv.php プロジェクト: balbali/ppe_final2
 function __construct($semaine, $site, $log)
 {
     parent::__construct();
     $this->semaine = $semaine;
     $this->site = $site;
     $this->log = $log;
 }
コード例 #2
0
ファイル: liste_user.php プロジェクト: balbali/ppe_final2
 /**
  * Initialisation des variables
  * @param String $prenom
  * @param String $nom
  * @param String $email
  */
 function __construct($prenom, $nom, $email)
 {
     parent::__construct();
     $this->prenom = $prenom;
     $this->nom = $nom;
     $this->email = $email;
 }
コード例 #3
0
ファイル: entidades.php プロジェクト: jpedrogarcia/aes
 function __construct($cod = NULL)
 {
     parent::__construct('ent');
     $this->cod = $cod;
     if (empty($this->cod)) {
         $this->cod = $_POST["cod"];
         $this->nome = strtoupper($_POST["nome"]);
     }
 }
コード例 #4
0
 /**
  * Initialisation des variables
  * @param int $semaine
  * @param int $user
  * @param int $site
  * @param int $log
  * @param boolean $pension
  * @param boolean $menage
  */
 public function __construct($semaine, $user, $site, $log, $pension, $menage)
 {
     parent::__construct();
     $this->semaine = $semaine;
     $this->user = $user;
     $this->site = $site;
     $this->log = $log;
     $this->pension = $pension;
     $this->menage = $menage;
 }
コード例 #5
0
ファイル: update_sl.php プロジェクト: balbali/ppe_final2
 /**
  * Initialisation des variables
  * @param int $id_site
  * @param int $id_log
  * @param int $nb
  * @param boolean $entree
  * @param int $piece
  * @param int $lit
  * @param boolean $wc
  * @param boolean $balcon
  * @param boolean $cloison
  * @param boolean $douche
  */
 function __construct($id_site, $id_log, $nb, $entree, $piece, $lit, $wc, $balcon, $cloison, $douche, $prix)
 {
     parent::__construct();
     $this->id_site = $id_site;
     $this->id_log = $id_log;
     $this->nb = $nb;
     $this->entree = $entree;
     $this->piece = $piece;
     $this->lit = $lit;
     $this->wc = $wc;
     $this->balcon = $balcon;
     $this->cloison = $cloison;
     $this->douche = $douche;
     $this->prix = $prix;
 }
コード例 #6
0
ファイル: usuario.php プロジェクト: jpedrogarcia/aes
 function __construct($protocolo = NULL)
 {
     parent::__construct('usu');
     $this->protocolo = $protocolo;
     !empty($_POST["usu_cod_form"]) ? $this->formulario = $_POST["usu_cod_form"] : "''";
     !empty($_POST["usu_nome"]) ? $this->nome = strtoupper($_POST["usu_nome"]) : "''";
     !empty($_POST["usu_abreviatura"]) ? $this->abreviatura = strtoupper($_POST["usu_abreviatura"]) : "''";
     !empty($_POST["usu_dt_nascto"]) ? $this->nascimento = $_POST["usu_dt_nascto"] : "''";
     !empty($_POST["usu_telefone"]) ? $this->fone = $_POST["usu_telefone"] : "''";
     !empty($_POST["usu_turno"]) ? $this->turno = strtoupper($_POST["usu_turno"]) : "''";
     !empty($_POST["usu_serie"]) ? $this->serie = strtoupper($_POST["usu_serie"]) : "''";
     !empty($_POST["usu_ent_id"]) ? $this->escola = strtoupper($_POST["usu_ent_id"]) : "''";
     !empty($_POST["usu_endereco"]) ? $this->logradouro = strtoupper($_POST["usu_endereco"]) : "''";
     !empty($_POST["usu_end_num"]) ? $this->numero = $_POST["usu_end_num"] : "''";
     !empty($_POST["usu_bairro"]) ? $this->bairro = strtoupper($_POST["usu_bairro"]) : "''";
     !empty($_POST["usu_resp_nome"]) ? $this->responsavel = strtoupper($_POST["usu_resp_nome"]) : "''";
     !empty($_POST["usu_protoloco"]) ? $this->protocolo = $_POST["usu_protoloco"] : "''";
     !empty($_GET['id']) ? $this->id = $_GET['id'] : false;
 }
コード例 #7
0
ファイル: exportar.php プロジェクト: jpedrogarcia/aes
 function __construct($protocolo = NULL)
 {
     parent::__construct("usu");
     $this->protocolo = $protocolo;
     $this->lineExport();
 }
コード例 #8
0
ファイル: info_argent.php プロジェクト: balbali/ppe_final2
 /**
  * Initialiser les variables
  * @param int $reserv
  * @param int $user
  */
 function __construct($user)
 {
     parent::__construct();
     $this->user = $user;
 }
コード例 #9
0
ファイル: add_argent.php プロジェクト: balbali/ppe_final2
 /**
  * Initialisation des variables
  */
 function __construct($montant, $id)
 {
     parent::__construct();
     $this->montant = $montant;
     $this->id = $id;
 }
コード例 #10
0
ファイル: protocolo.php プロジェクト: jpedrogarcia/aes
 function __construct()
 {
     parent::__construct("protocolo");
 }
コード例 #11
0
ファイル: exportarunico.php プロジェクト: jpedrogarcia/aes
 function __construct($id = NULL)
 {
     parent::__construct("usu");
     $this->id = $id;
     $this->lineExport();
 }
コード例 #12
0
 /**
  * Sets login variables
  * @param <string> $id
  * @param <string> $pw
  */
 public function __construct($id = null, $pw = null)
 {
     parent::__construct(SQL_ID, SQL_PW, SQL_DB);
     $this->id = $id;
     $this->pw = md5($pw);
 }
コード例 #13
0
ファイル: changemdp.php プロジェクト: balbali/ppe_final2
 function __construct($nom, $mdp)
 {
     parent::__construct();
     $this->nom = $nom;
     $this->mdp = $mdp;
 }
コード例 #14
0
ファイル: baixa.php プロジェクト: jpedrogarcia/aes
 function __construct()
 {
     parent::__construct("usu");
 }
コード例 #15
0
ファイル: liste_semaine.php プロジェクト: balbali/ppe_final2
 /**
  * Mise en place de la variable $zone
  */
 function __construct($zone)
 {
     parent::__construct();
     $this->zone = $zone;
 }
コード例 #16
0
ファイル: add_site.php プロジェクト: balbali/ppe_final2
 /**
  * Initialisation des variables
  * @param String $site
  */
 public function __construct($site)
 {
     parent::__construct();
     $this->site = $site;
 }
コード例 #17
0
 public function __construct()
 {
     parent::__construct(SQL_ID, SQL_PW, SQL_DB);
 }
コード例 #18
0
ファイル: delete_vacs.php プロジェクト: balbali/ppe_final2
 /**
  * Initialisation des variables
  * @param int $date
  */
 function __construct($id, $zone)
 {
     parent::__construct();
     $this->id = $id;
     $this->zone = $zone;
 }
コード例 #19
0
ファイル: add_vacs.php プロジェクト: balbali/ppe_final2
 /**
  * Initialisation des variables
  * @param String $id
  */
 public function __construct($num, $zone)
 {
     parent::__construct();
     $this->num = $num;
     $this->zone = $zone;
 }
コード例 #20
0
 function __construct($email, $mdp)
 {
     parent::__construct();
     $this->email = $email;
     $this->mdp = $mdp;
 }
コード例 #21
0
ファイル: update_site.php プロジェクト: balbali/ppe_final2
 /**
  * Initialisation des variables
  * @param int $id
  * @param String $site
  */
 function __construct($id, $site)
 {
     parent::__construct();
     $this->id = $id;
     $this->site = $site;
 }
コード例 #22
0
ファイル: update_log.php プロジェクト: balbali/ppe_final2
 /**
  * Initialisation des variables
  * @param int $id
  * @param String $log
  */
 function __construct($id, $log)
 {
     parent::__construct();
     $this->id = $id;
     $this->log = $log;
 }
コード例 #23
0
ファイル: requiert.php プロジェクト: balbali/ppe_final2
 function __construct()
 {
     parent::__construct();
     session_start();
 }
コード例 #24
0
ファイル: add_sl.php プロジェクト: balbali/ppe_final2
 /**
  * Initialisation des variables
  * @param int $id_site
  * @param int $id_log
  */
 public function __construct($id_site, $id_log)
 {
     parent::__construct();
     $this->id_site = $id_site;
     $this->id_log = $id_log;
 }
コード例 #25
0
ファイル: info_site.php プロジェクト: balbali/ppe_final2
 /**
  * Initialiser $id
  * @param int $id
  */
 function __construct($id)
 {
     parent::__construct();
     $this->id = $id;
 }
コード例 #26
0
 /**
  * Initialiser les variables
  * @param int $reserv
  * @param int $user
  */
 function __construct($reserv, $user)
 {
     parent::__construct();
     $this->reserv = $reserv;
     $this->user = $user;
 }
コード例 #27
0
ファイル: practicas.php プロジェクト: redigaffi/SimpleForum
 function __construct()
 {
     parent::__construct();
 }
コード例 #28
0
ファイル: add_log.php プロジェクト: balbali/ppe_final2
 /**
  * Initialisation des variables
  * @param String $site
  */
 public function __construct($log)
 {
     parent::__construct();
     $this->log = $log;
 }