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
|
class prospect {
// Définition des propriété de la classe
public $propetat_prospect; // etat du prospect
public $propnom_societe; // Nom de la société
public $propnom_contact; //Nom du contact
public $propadresse; // Adresse de la société
public $propcode_postal; // code postale de la société
public $propville_societe; // Ville de la société
public $proptel_fixe; // Fixe de la société
public $propfax; // fax de la société
public $propportable; // telephone_portable de la société
public $propdept; // Départemant du prospect
public $propedition; // édition concerné
public $propemail; // Email de la société
public $propremarque; // remarque concernant l'entretiens
public $propdomaine; // nom de domaine
public $propurl_site; // adresse internet de leur site
public $propnote_site; // note du site
public $propcommentaire_site; // Commentaire du site web
public $propdate_deb_hebergement; // date du début de l'hebergement
public $propdate_fin_hebergement; // date de fin de l'hbergement
// constructeur permettant de crée le prospect dans la classe
function __construct($etat,$nom_societe,$nom_contact,$adresse,$code_postal,$ville_societe,$tel_fixe,$fax,$portable,$email,$remarque,$domaine,$url,$note,$commentaire_site,$date_deb_hebergement,$date_fin_hebergement)
{
$this->propetat_prospect=$etat;
$this->propnom_societe=$nom_societe;
$this->propnom_contact=$nom_contact;
$this->propadresse=$adresse;
$this->propcode_postal=$code_postal;
$this->propville_societe=$ville_societe;
$this->proptel_fixe=$tel_fixe;
$this->propfax=$fax;
$this->propportable=$portable;
$this->propemail=$email;
$this->propremarque=$remarque;
$this->propdomaine=$domaine;
$this->propurl_site=$url;
$this->propnote_site=$note;
$this->propcommentaire_site=$commentaire_site;
$this->propdate_deb_hebergement=$date_deb_hebergement;
$this->propdate_fin_hebergement=$date_fin_hebergement;
}
} |
Partager