/**
  * Constructor
  */
 function BxSimpleMessengerPrivacy(&$oModule)
 {
     parent::BxDolPrivacy($oModule->_oDb->sTablePrefix . 'privacy', 'author_id', 'author_id');
 }
 /**
  * Constructor
  */
 function BxSoundsPrivacy($sTable = 'RayMp3Files', $sId = 'ID', $sOwner = 'Owner')
 {
     parent::BxDolPrivacy($sTable, $sId, $sOwner);
 }
 /**
  * Constructor
  */
 function BxBlogsPrivacy(&$oModule)
 {
     parent::BxDolPrivacy('bx_blogs_posts', 'PostID', 'OwnerID');
 }
 /**
  * Constructor
  */
 function BxEventsPrivacy(&$oModule)
 {
     $this->oModule = $oModule;
     parent::BxDolPrivacy($oModule->_oDb->_sPrefix . 'main', 'ID', 'ResponsibleID');
 }
 /**
  * Constructor
  */
 function BxStorePrivacyProduct(&$oModule)
 {
     $this->oModule = $oModule;
     parent::BxDolPrivacy($oModule->_oDb->getPrefix() . 'products', 'id', 'author_id');
 }
 /**
  * Constructor
  */
 function BxPhotosPrivacy($sTable = 'bx_photos_main', $sId = 'ID', $sOwner = 'Owner')
 {
     parent::BxDolPrivacy($sTable, $sId, $sOwner);
 }
 /**
  * Constructor
  */
 function BxSitesPrivacy(&$oModule)
 {
     parent::BxDolPrivacy('bx_sites_main', 'id', 'ownerid');
 }
 /**
  * Class constructor;
  */
 function BxPollPrivacy(&$oModule)
 {
     parent::BxDolPrivacy($oModule->_oDb->sTablePrefix . 'data', 'id_poll', 'id_profile');
 }
 /**
  * Constructor
  */
 function BxStorePrivacyFile(&$oModule)
 {
     parent::BxDolPrivacy($oModule->_oDb->getPrefix() . 'product_files', 'id', 'author_id');
 }
 function BxDolTextPrivacy(&$oModule)
 {
     parent::BxDolPrivacy($oModule->_oDb->getPrefix() . 'entries', 'id', 'author_id');
     $this->_oModule = $oModule;
 }
Exemple #11
0
 /**
  * Constructor
  */
 function BxAdsPrivacy(&$oModule)
 {
     parent::BxDolPrivacy('bx_ads_main', 'ID', 'IDProfile');
 }
 /**
  * Constructor
  */
 function BxGroupsPrivacy(&$oModule)
 {
     $this->oModule = $oModule;
     parent::BxDolPrivacy($oModule->_oDb->getPrefix() . 'main', 'id', 'author_id');
 }
Exemple #13
0
 /**
  * Constructor
  */
 function BxMapPrivacy(&$oModule)
 {
     parent::BxDolPrivacy($oModule->_oConfig->getDbPrefix() . 'profiles', 'id', 'id');
 }
 /**
  * Constructor
  */
 function BxFilesPrivacy($sTable = 'bx_files_main', $sId = 'ID', $sOwner = 'Owner')
 {
     parent::BxDolPrivacy($sTable, $sId, $sOwner);
 }
 function BxWallPrivacy(&$oModule)
 {
     parent::BxDolPrivacy('Profiles', 'ID', 'ID');
 }