예제 #1
0
 function __construct(&$oConfig)
 {
     parent::__construct();
     $this->_oConfig = $oConfig;
     $this->_sTable = $oConfig->sTableName;
     $this->sTablePrefix = $oConfig->sTablePrefix;
 }
예제 #2
0
 function __construct(&$oConfig)
 {
     parent::__construct($oConfig);
     $this->_oConfig = $oConfig;
     $this->_sTableInvites = $this->_sPrefix . 'invites';
     $this->_sTableRequests = $this->_sPrefix . 'requests';
 }
예제 #3
0
 public function __construct(&$oConfig)
 {
     parent::__construct($oConfig);
     $this->_oConfig = $oConfig;
     $this->_sTable = $this->_sPrefix . 'events';
     $this->_sTableHandlers = $this->_sPrefix . 'handlers';
 }
예제 #4
0
 function __construct(&$oConfig)
 {
     parent::__construct($oConfig);
     $this->_oConfig =& $oConfig;
     $this->iViewer = getLoggedId();
     $this->aFileFields = array('medID' => 'ID', 'Categories' => 'Categories', 'medProfId' => 'Owner', 'medTitle' => 'Title', 'medUri' => 'Uri', 'medDesc' => 'Description', 'medTags' => 'Tags', 'medDate' => 'Date', 'medViews' => 'Views', 'Approved' => 'Status', 'Featured' => 'Featured', 'Rate' => 'Rate', 'RateCount' => 'RateCount');
     $this->aFavoriteFields = array('fileId' => 'ID', 'ownerId' => 'Profile', 'favDate' => 'Date');
 }
예제 #5
0
 function __construct(&$oConfig)
 {
     parent::__construct();
     $this->_oConfig = $oConfig;
 }
예제 #6
0
 function __construct(&$oConfig)
 {
     parent::__construct($oConfig);
 }
예제 #7
0
 function __construct(&$oConfig)
 {
     parent::__construct();
     $this->_oConfig = $oConfig;
     $this->sTablePrefix = $oConfig->getDbPrefix();
 }
예제 #8
0
 /**
  * Constructor.
  */
 function __construct(&$oConfig)
 {
     parent::__construct();
     $this->_oConfig = $oConfig;
     $this->_aObjects = $this->getShoutboxObjects();
 }