/** * Constructeur par défaut */ function __construct($p_sName, $p_bDefault = false, $p_iId = 0) { parent::__construct(); $this->sName = $p_sName; $this->bDefault = $p_bDefault; $this->iId = $p_iId; }
public function __construct($p_iUserId, $p_iTrackerId, $p_sPasskey = '') { parent::__construct(); $this->iUserId = $p_iUserId; $this->iTrackerId = $p_iTrackerId; $this->sPasskey = $p_sPasskey; }
/** * Constructeur par défaut */ function __construct($p_iModuleId, $p_iRankId, $p_sRankName = '', $p_sModuleName = '') { parent::__construct(); $this->iModuleId = $p_iModuleId; $this->iRankId = $p_iRankId; $this->sRankName = $p_sRankName; $this->sModuleName = $p_sModuleName; }
/** * Constructeur * @param string $p_sKey * @param int $p_iUserId * @param boolean $p_bRead * @param boolean $p_bWrite */ public function __construct($p_sKey, $p_iUserId = 0, $p_bRead = false, $p_bWrite = false) { parent::__construct(); $this->sKey = $p_sKey; $this->iUserId = $p_iUserId; $this->bRead = $p_bRead; $this->bWrite = $p_bWrite; }
public function __construct($sId, $sTitle, $sPoster, $sType) { parent::__construct(); $this->sId = $sId; $this->sTitle = $sTitle; $this->sPoster = $sPoster; $this->sType = $sType; }
/** * Constructeur par défaut */ function __construct($p_sName, $p_sRegex, $p_iId = 0, $p_iCategorieId = 0) { parent::__construct(); $this->iId = $p_iId; $this->sName = $p_sName; $this->sRegex = $p_sRegex; $this->iCategorieId = $p_iCategorieId; }
/** * Constructeur * @param int $p_iId ID du Tracker * @param string $p_sName Nom du Tracker */ function __construct($p_sName, $p_iId = 0) { parent::__construct(); $this->sName = $p_sName; $this->iId = $p_iId; $this->aFlux = array(); $this->sDirectLink = ''; $this->sLink = ''; }
/** * Consctructeur * @param string $p_sReleaseName Nom de la release à scrapper * @param string $p_iReleaseId ID de la release à scrapper */ public function __construct($p_sReleaseName, $p_iReleaseId) { parent::__construct(); $this->sReleaseName = strtr(strtolower($p_sReleaseName), " ", "."); $this->sReleaseName = strtr($this->sReleaseName, "_", "."); $this->sReleaseName = html_entity_decode($this->sReleaseName); $this->iReleaseId = $p_iReleaseId; $this->oRelease = new Release($this->sReleaseName); $this->oRelease->parseRelease(); }
/** * Constructeur */ function __construct($p_iTracker, $p_sUrl, $p_sMask, $p_bForcedate = false, $p_sLastCheck = 0, $p_sEncoding = 'UTF-8', $p_iId = 0) { parent::__construct(); $this->iId = $p_iId; $this->iTracker = $p_iTracker; $this->sUrl = $p_sUrl; $this->bForcedate = $p_bForcedate; $this->sMask = $p_sMask; $this->sLastCheck = $p_sLastCheck; $this->sEncoding = $p_sEncoding; }
/** * Constructeur * @param type $p_iParrainId * @param type $p_sCode * @param type $p_iFilleulId */ function __construct($p_iParrainId, $p_sCode = '', $p_iFilleulId = 0) { parent::__construct(); $this->iParrainId = $p_iParrainId; $this->sCode = $p_sCode; if ($p_iFilleulId != NULL) { $this->iFilleulId = $p_iFilleulId; } else { $this->iFilleulId = 0; } }
/** * Constructeur par défaut */ function __construct($p_iId = 0, $p_sLogin = '******', $p_sPassword = '', $p_sMail = '', $p_sTksPasskey = '', $p_iRankId = 0) { parent::__construct(); $this->aPageAccess = array(); $this->sLogin = $p_sLogin; $this->iId = $p_iId; $this->sPassword = $p_sPassword; $this->sMail = $p_sMail; $this->sTksPasskey = $p_sTksPasskey; $this->iRankId = $p_iRankId; $this->loadAccess(); }
/** * Constructeur par défaut */ function __construct($p_sName, $p_iId = 0) { parent::__construct(); $this->sName = $p_sName; $this->iId = $p_iId; }