. */ /* */ /*************************************************************************************/ require_once __DIR__ . "/../fonctions/autoload.php"; class Profildesc extends Baseobjdesc { public $id; public $profil; const TABLE="profildesc"; public $table=self::TABLE; public $bddvars = array("id", "profil", "titre", "chapo", "description", "postscriptum", "lang"); public function __construct(){ parent::__construct('profil'); } public function charger($id, $lang = false) { return $this->charger_desc($id, $lang); } } ?>