Cheetah
ChSpyExport.php
Go to the documentation of this file.
1 <?php
2 
8 ch_import('ChWsbExport');
9 
10 class ChSpyExport extends ChWsbExport
11 {
12  protected function __construct($aSystem)
13  {
14  parent::__construct($aSystem);
15  $this->_aTables = array(
16  'ch_spy_data' => '`sender_id` = {profile_id} OR `recipient_id` = {profile_id}',
17  'ch_spy_friends_data' => '`sender_id` = {profile_id} OR `friend_id` = {profile_id}',
18  );
19  }
20 }
ch_import
ch_import($sClassName, $aModule=array())
Definition: utils.inc.php:1218
ChWsbExport
Definition: ChWsbExport.php:29
php
ChSpyExport
Definition: ChSpyExport.php:11
ChSpyExport\__construct
__construct($aSystem)
Definition: ChSpyExport.php:12