1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333
| <?php
echo 1;
class Categorie {
const TB_PREFIX = 'achatsenfolie__';
/**
* Numéro d'identifiant
* @access private
* @var integer
*/
private $id = 0;
/**
* Titre
* @access private
* @var string
*/
private $titre = null;
/**
* Description
* @access private
* @var string
*/
private $description = null;
/**
*
* @access private
* @var boolean
*/
private $estDansContact = true;
/**
* Catégorie de niveau supérieur.
* Laissez à null pour une catégorie de premier niveau.
* @access private
* @var Categorie
*/
private $Categorie = null;
/**
* Constructor
*
* @static
* Ne peut être static.
* Attention, quand tu fais ton new Categorie, tu lui passe des paramètres donc
* ton constructeur doit certainement prendre certain parametre
* @access public
* @param Array $Array
* @return Categorie
*/
public function __construct($id=0,$titre = "sans titre",$description = null, $Categorie= null) {
$this->id = $id;
$this->titre = $titre;
$this->description = $description;
$this->Categorie = $Categorie;
}
//ACCESSEURS
//SET
protected function setId($id) {
if (is_int($id) && $id>0) {
$this->id = $id;
} else {
throw new InvalidArguementException('Numéro d\'identifiant incorrect');
}
return $this;
}
public function setTitre($titre) {
if (is_string($titre) && strlen($titre)>0 && strlen($titre)<255) {
$this->titre = html_entity_decode($titre);
} else {
throw new InvalidArgumentException('Titre trop long ou de type incorrect');
}
return $this;
}
public function setDescription($description) {
if (is_string($description) || is_null($description)) {
$this->description = html_entity_decode($description);
} else {
throw new InvalidArgumentException('Description de type incorrecte');
}
return $this;
}
/**
* Met la catégorie
*
* @access public
* @param Categorie $Categorie
* @return Categorie
*/
public function setCategorie($Categorie) {
if ($Categorie instanceof Categorie || is_null($Categorie)) {
$this->Categorie = $Categorie;
} else {
throw new InvalidArgumentException('La catégorie "'.(string) $Categorie.'" n\'existe pas');
}
return $this;
}
/**
* Donne le numéro d'identifiant
*
* @access public
* @return integer
*/
public function getId() {
return (int) $this->id;
}
/**
* Donne le nom
*
* @access public
* @return string
*/
public function getTitre() {
return (string) $this->titre;
}
/**
* Donne la description
*
* @access public
* @return string
*/
public function getDescription() {
return (string) $this->description;
}
/**
* @access public
* @return boolean
*/
public function estDansContact() {
return (bool) $this->estDansContact;
}
/**
* Donne la catégorie de niveau supérieur
*
* @access public
* @return Categorie
*/
public function getCategorie() {
return $this->Categorie;
}
/**
* Retourne l'URL de la page du produit
* @access public
* @result String
*/
public function getUrl() {
$result = str_replace(' ', '-', $this->titre);
return (String) $this->id.'-'.$result.'.php';
}
/***********Créer une catgeorie vide pour rentrer les champs*******/
public function Ajouter($id,$titre,$description,$estDansContact,$Categorie)
{
$query="INSERT INTO categorie VALUES ('$id','$titre,'$description','$estDansContact','$Categorie'')";
//echo $query
mysql_query($query);
}
public function Supprimer($id)
{
mysql_query("DELETE FROM categorie WHERE id='$id'");
}
public function Modifier($id,$titre,$description,$estDansContact,$Categorie)
{
$query=("UPDATE categorie SET ('$titre,'$description','$estDansContact','$Categorie'')
WHERE id='$id'");
//echo $query
mysql_query($query);
}
public function ExisteId($id){
$query=("SELECT * FROM 'categorie' WHERE 'id'='$id'");
//echo $query;
$result=mysql_query($query);
if(mysql_num_rows($result)==0){
return("Identifiant inexistant");
}
else
{
return("Identifiant existant");
}
}
public function CountId($id){
$req=("SELECT * FROM 'categorie' WHERE 'id' ='$id'");
$reponse = mysql_query($req);
$nbCategorie=mysql_num_rows($reponse);
return($nbCategorie);
}
/**********Recupere informations tous les categories**********/
public static function findAllCategorie(){
$req ="SELECT * from ".self::TB_PREFIX."categorie where id_categorie is NULL";
$res = mysql_query($req) or die ('Erreur : '.mysql_error());
$ret = array();
while( $data = mysql_fetch_object($res) ) {
$ret[] = new self (
$data->id,
$data->titre,
$data->description,
$data->estDansContact
);
}
if ( !empty($ret) )
return $ret;
return null;
}
/**********Recupere informations tous les categories**********/
public static function findAllSousCategorie(){
$req ="SELECT * from ".self::TB_PREFIX."categorie where id_categorie='1'";
$res = mysql_query($req) or die ('Erreur : '.mysql_error());
$ret = array();
while( $data = mysql_fetch_object($res) ) {
$ret[] = new self (
$data->id,
$data->titre,
$data->description,
$data->estDansContact
);
}
if ( !empty($ret) )
return $ret;
return null;
}
/**********Recupere informations tous les sous categories par id**********/
public static function findById($id){
$req ="SELECT * from ".self::TB_PREFIX."categorie where id=".$id."";
$res = mysql_query($req) or exit(mysl_error());
$ret = array();
while( $data = mysql_fetch_object($res) ) {
$ret[] = new self (
$data->id,
$data->titre,
$data->description,
$data->estDansContact
);
}
if ( !empty($ret) )
return $ret;
return null;
}
/**********Recupere informations tous les sous categories par id**********/
public static function findSousCategorieById($id){
$req ="SELECT * from ".self::TB_PREFIX."categorie where id_categorie=".$id."";
$res = mysql_query($req) or die ('Erreur : '.mysql_error());
$ret = array();
while( $data = mysql_fetch_object($res) ) {
$ret[] = new self (
$data->id,
$data->titre,
$data->description,
$data->estDansContact
);
}
if ( !empty($ret) )
return $ret;
return null;
}
/**********Recupere informations d'une categorie par titre**********/
public static function findByTitre($titre){
$req ="SELECT * from ".self::TB_PREFIX."categorie where titre=".$titre."";
$res = mysql_query($req);
if($data = mysql_fetch_object($res))return new categorie(
$data->titre,
$data->description,
$data->estDansContact,
$data->Categorie);
else return null;
}
public function __toString()
{
return $this->titre."".$this->description;
}
}
?> |
Partager