function __construct()
 {
     $logging = new CRM_Logging_Schema();
     $this->tables[] = 'civicrm_contribution';
     $this->tables = array_merge($this->tables, array_keys($logging->customDataLogTables()));
     $this->detail = 'logging/contribute/detail';
     $this->summary = 'logging/contribute/summary';
     parent::__construct();
 }
 function __construct()
 {
     $logging = new CRM_Logging_Schema();
     $this->tables[] = 'civicrm_contact';
     $this->tables = array_merge($this->tables, array_keys($logging->customDataLogTables()));
     $this->tables[] = 'civicrm_email';
     $this->tables[] = 'civicrm_phone';
     $this->tables[] = 'civicrm_im';
     $this->tables[] = 'civicrm_openid';
     $this->tables[] = 'civicrm_website';
     $this->tables[] = 'civicrm_address';
     $this->tables[] = 'civicrm_note';
     $this->tables[] = 'civicrm_relationship';
     $this->detail = 'logging/contact/detail';
     $this->summary = 'logging/contact/summary';
     parent::__construct();
 }
Esempio n. 3
0
 function __construct()
 {
     $logging = new CRM_Logging_Schema();
     $this->tables[] = 'civicrm_contact';
     $this->tables = array_merge($this->tables, array_keys($logging->customDataLogTables()));
     $this->tables[] = 'civicrm_email';
     $this->tables[] = 'civicrm_phone';
     $this->tables[] = 'civicrm_im';
     $this->tables[] = 'civicrm_openid';
     $this->tables[] = 'civicrm_website';
     $this->tables[] = 'civicrm_address';
     $this->tables[] = 'civicrm_note';
     $this->tables[] = 'civicrm_relationship';
     $this->tables[] = 'civicrm_activity';
     $this->tables[] = 'civicrm_case';
     // allow tables to be extended by report hook query objects
     CRM_Report_BAO_Hook::singleton()->alterLogTables($this, $this->tables);
     $this->detail = 'logging/contact/detail';
     $this->summary = 'logging/contact/summary';
     parent::__construct();
 }