示例#1
0
文件: kshow.php 项目: DBezemer/server
 public function setSkinObj(skinContainer $skin_container)
 {
     $this->skin_container = $skin_container;
     parent::setSkin($skin_container->serializeToString());
 }
示例#2
0
文件: Basekshow.php 项目: wzur/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     kshowPeer
  */
 public function getPeer()
 {
     if (self::$peer === null) {
         self::$peer = new kshowPeer();
     }
     return self::$peer;
 }
示例#3
0
 public function getSearchTextRaw()
 {
     return parent::getSearchText();
 }