示例#1
0
文件: rank.model.php 项目: Jatax/TKS
 /**
  * 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;
 }
示例#2
0
 public function __construct($p_iUserId, $p_iTrackerId, $p_sPasskey = '')
 {
     parent::__construct();
     $this->iUserId = $p_iUserId;
     $this->iTrackerId = $p_iTrackerId;
     $this->sPasskey = $p_sPasskey;
 }
示例#3
0
 /**
  * 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;
 }
示例#4
0
 /**
  * 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;
 }
示例#5
0
文件: fiche.model.php 项目: Jatax/TKS
 public function __construct($sId, $sTitle, $sPoster, $sType)
 {
     parent::__construct();
     $this->sId = $sId;
     $this->sTitle = $sTitle;
     $this->sPoster = $sPoster;
     $this->sType = $sType;
 }
示例#6
0
文件: regex.model.php 项目: Jatax/TKS
 /**
  * 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;
 }
示例#7
0
 /**
  * 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 = '';
 }
示例#8
0
 /**
  * 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();
 }
示例#9
0
文件: rss.model.php 项目: Jatax/TKS
 /**
  * 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;
 }
示例#10
0
 /**
  * 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;
     }
 }
示例#11
0
文件: user.model.php 项目: Jatax/TKS
 /**
  * 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();
 }
示例#12
0
 /**
  * Constructeur par défaut
  */
 function __construct($p_sName, $p_iId = 0)
 {
     parent::__construct();
     $this->sName = $p_sName;
     $this->iId = $p_iId;
 }