コード例 #1
0
ファイル: Basekuser.php プロジェクト: dozernz/server
 /**
  * Returns a peer instance associated with this om.
  *
  * Since Peer classes are not to have any instance attributes, this method returns the
  * same instance for all member of this class. The method could therefore
  * be static, but this would prevent one from overriding the behavior.
  *
  * @return     kuserPeer
  */
 public function getPeer()
 {
     if (self::$peer === null) {
         self::$peer = new kuserPeer();
     }
     return self::$peer;
 }
コード例 #2
0
 /**
  * Force modifiedColumns to be affected even if the value not changed
  * 
  * @see Basekuser::setUpdatedAt()
  */
 public function setUpdatedAt($v)
 {
     parent::setUpdatedAt($v);
     if (!in_array(kuserPeer::UPDATED_AT, $this->modifiedColumns, false)) {
         $this->modifiedColumns[] = kuserPeer::UPDATED_AT;
     }
     return $this;
 }
コード例 #3
0
ファイル: kuser.php プロジェクト: richhl/kalturaCE
 public function getSha1Password()
 {
     // sha1_password column is deprecated
     KalturaLog::ALERT('Field [sha1_password] on object [kuser] is deprecated - getSha1Password should be removed from schema after migration');
     return parent::getSha1Password();
 }