Exemplo n.º 1
0
 function BxSoundsDb(&$oConfig)
 {
     parent::BxDolFilesDb($oConfig);
     $this->aFileFields['medViews'] = 'Listens';
     $this->sFileTable = 'RayMp3Files';
     $this->sFavoriteTable = 'bx_sounds_favorites';
 }
Exemplo n.º 2
0
 function __construct(&$oConfig)
 {
     parent::__construct($oConfig);
     $this->aFileFields['medViews'] = 'Listens';
     $this->sFileTable = 'RayMp3Files';
     $this->sFavoriteTable = 'bx_sounds_favorites';
 }
Exemplo n.º 3
0
 function BxVideosDb(&$oConfig)
 {
     parent::BxDolFilesDb($oConfig);
     $this->aFileFields['medExt'] = 'Video';
     $this->aFileFields['medSource'] = 'Source';
     $this->sFileTable = 'RayVideoFiles';
     $this->sFavoriteTable = 'bx_videos_favorites';
 }
Exemplo n.º 4
0
 function __construct(&$oConfig)
 {
     parent::__construct($oConfig);
     $this->aFileFields['medExt'] = 'Video';
     $this->aFileFields['medSource'] = 'Source';
     $this->sFileTable = 'RayVideoFiles';
     $this->sFavoriteTable = 'bx_videos_favorites';
 }
Exemplo n.º 5
0
 function __construct(&$oConfig)
 {
     parent::__construct($oConfig);
     $this->sFileTable = 'bx_photos_main';
     $this->sFavoriteTable = 'bx_photos_favorites';
     $this->aFileFields['medDesc'] = 'Desc';
     $this->aFileFields['medExt'] = 'Ext';
     $this->aFileFields['medSize'] = 'Size';
     $this->aFileFields['Hash'] = 'Hash';
 }
Exemplo n.º 6
0
 function BxFilesDb(&$oConfig)
 {
     parent::BxDolFilesDb($oConfig);
     $this->sFileTable = 'bx_files_main';
     $this->sFavoriteTable = 'bx_files_favorites';
     $this->sMimeTypeTable = 'bx_files_types';
     $aAddFields = array('medExt' => 'Ext', 'medDesc' => 'Desc', 'medSize' => 'Size', 'Type' => 'Type', 'DownloadsCount' => 'DownloadsCount', 'AllowDownload' => 'AllowDownload');
     $this->aFileFields = array_merge($this->aFileFields, $aAddFields);
     $this->aFavoriteFields = array('fileId' => 'ID', 'ownerId' => 'Profile', 'favDate' => 'Date');
 }
Exemplo n.º 7
0
 function BxPhotosDb(&$oConfig)
 {
     parent::BxDolFilesDb($oConfig);
     $this->sFileTable = 'bx_photos_main';
     $this->sFavoriteTable = 'bx_photos_favorites';
     $this->aFileFields['medDesc'] = 'Desc';
     $this->aFileFields['medExt'] = 'Ext';
     $this->aFileFields['medSize'] = 'Size';
     $this->aFileFields['Hash'] = 'Hash';
 }