get_primaldatafrom($id); } else { $this->id = $id; $this->get_primaldata(); } } // --------------------------------------------------------------- // get_primaldata() : récupération infos subcollection à partir de l'id // --------------------------------------------------------------- function get_primaldata() { global $dbh; $requete = "SELECT * FROM series WHERE serie_id='".addslashes($this->id)."' "; $result = @mysql_query($requete, $dbh); if(mysql_num_rows($result)) { $obj = mysql_fetch_object($result); mysql_free_result($result); $this->get_primaldatafrom($obj); } else { // pas de collection avec cette clé $this->id = 0; $this->name = ''; $this->index = ''; } } // --------------------------------------------------------------- // get_primaldatafrom($obj) : récupération infos collection à partir d'un collection-objet // --------------------------------------------------------------- function get_primaldatafrom($obj) { $this->id = $obj->serie_id; $this->name = $obj->serie_name; $this->index = $obj->serie_index; } // --------------------------------------------------------------- // print_resume($level) : affichage d'informations sur la série // --------------------------------------------------------------- function print_resume($level = 2,$css='') { global $css; if(!$this->id) return; // adaptation par rapport au niveau de détail souhaité switch ($level) { // case x : case 2 : default : global $serie_level2_display; $publisher_display = $serie_level2_display; break; } $print = $publisher_display; // remplacement des champs statiques $print = str_replace("!!id!!", $this->id, $print); $print = str_replace("!!name!!", $this->name, $print); return $print; } } # fin de définition de la classe serie } # fin de délaration