First commit
This commit is contained in:
commit
c6e2478c40
13918 changed files with 2303184 additions and 0 deletions
572
sites/all/modules/civicrm/CRM/Report/DAO/ReportInstance.php
Normal file
572
sites/all/modules/civicrm/CRM/Report/DAO/ReportInstance.php
Normal file
|
@ -0,0 +1,572 @@
|
|||
<?php
|
||||
/*
|
||||
+--------------------------------------------------------------------+
|
||||
| CiviCRM version 4.7 |
|
||||
+--------------------------------------------------------------------+
|
||||
| Copyright CiviCRM LLC (c) 2004-2017 |
|
||||
+--------------------------------------------------------------------+
|
||||
| This file is a part of CiviCRM. |
|
||||
| |
|
||||
| CiviCRM is free software; you can copy, modify, and distribute it |
|
||||
| under the terms of the GNU Affero General Public License |
|
||||
| Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
|
||||
| |
|
||||
| CiviCRM is distributed in the hope that it will be useful, but |
|
||||
| WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||||
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
|
||||
| See the GNU Affero General Public License for more details. |
|
||||
| |
|
||||
| You should have received a copy of the GNU Affero General Public |
|
||||
| License and the CiviCRM Licensing Exception along |
|
||||
| with this program; if not, contact CiviCRM LLC |
|
||||
| at info[AT]civicrm[DOT]org. If you have questions about the |
|
||||
| GNU Affero General Public License or the licensing of CiviCRM, |
|
||||
| see the CiviCRM license FAQ at http://civicrm.org/licensing |
|
||||
+--------------------------------------------------------------------+
|
||||
*/
|
||||
/**
|
||||
* @package CRM
|
||||
* @copyright CiviCRM LLC (c) 2004-2017
|
||||
*
|
||||
* Generated from xml/schema/CRM/Report/ReportInstance.xml
|
||||
* DO NOT EDIT. Generated by CRM_Core_CodeGen
|
||||
* (GenCodeChecksum:e28abdd2a3696c4a6072dfbfd4f54d68)
|
||||
*/
|
||||
require_once 'CRM/Core/DAO.php';
|
||||
require_once 'CRM/Utils/Type.php';
|
||||
/**
|
||||
* CRM_Report_DAO_ReportInstance constructor.
|
||||
*/
|
||||
class CRM_Report_DAO_ReportInstance extends CRM_Core_DAO {
|
||||
/**
|
||||
* Static instance to hold the table name.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
static $_tableName = 'civicrm_report_instance';
|
||||
/**
|
||||
* Should CiviCRM log any modifications to this table in the civicrm_log table.
|
||||
*
|
||||
* @var boolean
|
||||
*/
|
||||
static $_log = false;
|
||||
/**
|
||||
* Report Instance ID
|
||||
*
|
||||
* @var int unsigned
|
||||
*/
|
||||
public $id;
|
||||
/**
|
||||
* Which Domain is this instance for
|
||||
*
|
||||
* @var int unsigned
|
||||
*/
|
||||
public $domain_id;
|
||||
/**
|
||||
* Report Instance Title.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $title;
|
||||
/**
|
||||
* FK to civicrm_option_value for the report template
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $report_id;
|
||||
/**
|
||||
* when combined with report_id/template uniquely identifies the instance
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $name;
|
||||
/**
|
||||
* arguments that are passed in the url when invoking the instance
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $args;
|
||||
/**
|
||||
* Report Instance description.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $description;
|
||||
/**
|
||||
* permission required to be able to run this instance
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $permission;
|
||||
/**
|
||||
* role required to be able to run this instance
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $grouprole;
|
||||
/**
|
||||
* Submitted form values for this report
|
||||
*
|
||||
* @var text
|
||||
*/
|
||||
public $form_values;
|
||||
/**
|
||||
* Is this entry active?
|
||||
*
|
||||
* @var boolean
|
||||
*/
|
||||
public $is_active;
|
||||
/**
|
||||
* FK to contact table.
|
||||
*
|
||||
* @var int unsigned
|
||||
*/
|
||||
public $created_id;
|
||||
/**
|
||||
* FK to contact table.
|
||||
*
|
||||
* @var int unsigned
|
||||
*/
|
||||
public $owner_id;
|
||||
/**
|
||||
* Subject of email
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $email_subject;
|
||||
/**
|
||||
* comma-separated list of email addresses to send the report to
|
||||
*
|
||||
* @var text
|
||||
*/
|
||||
public $email_to;
|
||||
/**
|
||||
* comma-separated list of email addresses to send the report to
|
||||
*
|
||||
* @var text
|
||||
*/
|
||||
public $email_cc;
|
||||
/**
|
||||
* comma-separated list of email addresses to send the report to
|
||||
*
|
||||
* @var text
|
||||
*/
|
||||
public $header;
|
||||
/**
|
||||
* comma-separated list of email addresses to send the report to
|
||||
*
|
||||
* @var text
|
||||
*/
|
||||
public $footer;
|
||||
/**
|
||||
* FK to navigation ID
|
||||
*
|
||||
* @var int unsigned
|
||||
*/
|
||||
public $navigation_id;
|
||||
/**
|
||||
* FK to instance ID drilldown to
|
||||
*
|
||||
* @var int unsigned
|
||||
*/
|
||||
public $drilldown_id;
|
||||
/**
|
||||
*
|
||||
* @var boolean
|
||||
*/
|
||||
public $is_reserved;
|
||||
/**
|
||||
* Class constructor.
|
||||
*/
|
||||
function __construct() {
|
||||
$this->__table = 'civicrm_report_instance';
|
||||
parent::__construct();
|
||||
}
|
||||
/**
|
||||
* Returns foreign keys and entity references.
|
||||
*
|
||||
* @return array
|
||||
* [CRM_Core_Reference_Interface]
|
||||
*/
|
||||
static function getReferenceColumns() {
|
||||
if (!isset(Civi::$statics[__CLASS__]['links'])) {
|
||||
Civi::$statics[__CLASS__]['links'] = static ::createReferenceColumns(__CLASS__);
|
||||
Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName() , 'domain_id', 'civicrm_domain', 'id');
|
||||
Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName() , 'created_id', 'civicrm_contact', 'id');
|
||||
Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName() , 'owner_id', 'civicrm_contact', 'id');
|
||||
Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName() , 'navigation_id', 'civicrm_navigation', 'id');
|
||||
Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName() , 'drilldown_id', 'civicrm_report_instance', 'id');
|
||||
CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'links_callback', Civi::$statics[__CLASS__]['links']);
|
||||
}
|
||||
return Civi::$statics[__CLASS__]['links'];
|
||||
}
|
||||
/**
|
||||
* Returns all the column names of this table
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
static function &fields() {
|
||||
if (!isset(Civi::$statics[__CLASS__]['fields'])) {
|
||||
Civi::$statics[__CLASS__]['fields'] = array(
|
||||
'id' => array(
|
||||
'name' => 'id',
|
||||
'type' => CRM_Utils_Type::T_INT,
|
||||
'title' => ts('Report Instance ID') ,
|
||||
'description' => 'Report Instance ID',
|
||||
'required' => true,
|
||||
'table_name' => 'civicrm_report_instance',
|
||||
'entity' => 'ReportInstance',
|
||||
'bao' => 'CRM_Report_BAO_ReportInstance',
|
||||
'localizable' => 0,
|
||||
) ,
|
||||
'domain_id' => array(
|
||||
'name' => 'domain_id',
|
||||
'type' => CRM_Utils_Type::T_INT,
|
||||
'title' => ts('Report Instance Domain ID') ,
|
||||
'description' => 'Which Domain is this instance for',
|
||||
'required' => true,
|
||||
'table_name' => 'civicrm_report_instance',
|
||||
'entity' => 'ReportInstance',
|
||||
'bao' => 'CRM_Report_BAO_ReportInstance',
|
||||
'localizable' => 0,
|
||||
'FKClassName' => 'CRM_Core_DAO_Domain',
|
||||
'pseudoconstant' => array(
|
||||
'table' => 'civicrm_domain',
|
||||
'keyColumn' => 'id',
|
||||
'labelColumn' => 'name',
|
||||
)
|
||||
) ,
|
||||
'title' => array(
|
||||
'name' => 'title',
|
||||
'type' => CRM_Utils_Type::T_STRING,
|
||||
'title' => ts('Report Instance Title') ,
|
||||
'description' => 'Report Instance Title.',
|
||||
'maxlength' => 255,
|
||||
'size' => CRM_Utils_Type::HUGE,
|
||||
'table_name' => 'civicrm_report_instance',
|
||||
'entity' => 'ReportInstance',
|
||||
'bao' => 'CRM_Report_BAO_ReportInstance',
|
||||
'localizable' => 0,
|
||||
'html' => array(
|
||||
'type' => 'Text',
|
||||
) ,
|
||||
) ,
|
||||
'report_id' => array(
|
||||
'name' => 'report_id',
|
||||
'type' => CRM_Utils_Type::T_STRING,
|
||||
'title' => ts('Report template ID') ,
|
||||
'description' => 'FK to civicrm_option_value for the report template',
|
||||
'required' => true,
|
||||
'maxlength' => 512,
|
||||
'size' => CRM_Utils_Type::HUGE,
|
||||
'table_name' => 'civicrm_report_instance',
|
||||
'entity' => 'ReportInstance',
|
||||
'bao' => 'CRM_Report_BAO_ReportInstance',
|
||||
'localizable' => 0,
|
||||
'html' => array(
|
||||
'type' => 'Select',
|
||||
) ,
|
||||
) ,
|
||||
'name' => array(
|
||||
'name' => 'name',
|
||||
'type' => CRM_Utils_Type::T_STRING,
|
||||
'title' => ts('Report instance Name') ,
|
||||
'description' => 'when combined with report_id/template uniquely identifies the instance',
|
||||
'maxlength' => 255,
|
||||
'size' => CRM_Utils_Type::HUGE,
|
||||
'table_name' => 'civicrm_report_instance',
|
||||
'entity' => 'ReportInstance',
|
||||
'bao' => 'CRM_Report_BAO_ReportInstance',
|
||||
'localizable' => 0,
|
||||
'html' => array(
|
||||
'type' => 'Text',
|
||||
) ,
|
||||
) ,
|
||||
'args' => array(
|
||||
'name' => 'args',
|
||||
'type' => CRM_Utils_Type::T_STRING,
|
||||
'title' => ts('Report Instance Arguments') ,
|
||||
'description' => 'arguments that are passed in the url when invoking the instance',
|
||||
'maxlength' => 255,
|
||||
'size' => CRM_Utils_Type::HUGE,
|
||||
'table_name' => 'civicrm_report_instance',
|
||||
'entity' => 'ReportInstance',
|
||||
'bao' => 'CRM_Report_BAO_ReportInstance',
|
||||
'localizable' => 0,
|
||||
'html' => array(
|
||||
'type' => 'Text',
|
||||
) ,
|
||||
) ,
|
||||
'description' => array(
|
||||
'name' => 'description',
|
||||
'type' => CRM_Utils_Type::T_STRING,
|
||||
'title' => ts('Report Instance description') ,
|
||||
'description' => 'Report Instance description.',
|
||||
'maxlength' => 255,
|
||||
'size' => CRM_Utils_Type::HUGE,
|
||||
'table_name' => 'civicrm_report_instance',
|
||||
'entity' => 'ReportInstance',
|
||||
'bao' => 'CRM_Report_BAO_ReportInstance',
|
||||
'localizable' => 0,
|
||||
'html' => array(
|
||||
'type' => 'Text',
|
||||
) ,
|
||||
) ,
|
||||
'permission' => array(
|
||||
'name' => 'permission',
|
||||
'type' => CRM_Utils_Type::T_STRING,
|
||||
'title' => ts('Report Instance Permissions') ,
|
||||
'description' => 'permission required to be able to run this instance',
|
||||
'maxlength' => 255,
|
||||
'size' => CRM_Utils_Type::HUGE,
|
||||
'table_name' => 'civicrm_report_instance',
|
||||
'entity' => 'ReportInstance',
|
||||
'bao' => 'CRM_Report_BAO_ReportInstance',
|
||||
'localizable' => 0,
|
||||
'html' => array(
|
||||
'type' => 'Text',
|
||||
) ,
|
||||
) ,
|
||||
'grouprole' => array(
|
||||
'name' => 'grouprole',
|
||||
'type' => CRM_Utils_Type::T_STRING,
|
||||
'title' => ts('Report Instance Assigned to Roles') ,
|
||||
'description' => 'role required to be able to run this instance',
|
||||
'maxlength' => 1024,
|
||||
'size' => CRM_Utils_Type::HUGE,
|
||||
'table_name' => 'civicrm_report_instance',
|
||||
'entity' => 'ReportInstance',
|
||||
'bao' => 'CRM_Report_BAO_ReportInstance',
|
||||
'localizable' => 0,
|
||||
'html' => array(
|
||||
'type' => 'Text',
|
||||
) ,
|
||||
) ,
|
||||
'form_values' => array(
|
||||
'name' => 'form_values',
|
||||
'type' => CRM_Utils_Type::T_TEXT,
|
||||
'title' => ts('Submitted Form Values') ,
|
||||
'description' => 'Submitted form values for this report',
|
||||
'import' => true,
|
||||
'where' => 'civicrm_report_instance.form_values',
|
||||
'headerPattern' => '',
|
||||
'dataPattern' => '',
|
||||
'export' => true,
|
||||
'table_name' => 'civicrm_report_instance',
|
||||
'entity' => 'ReportInstance',
|
||||
'bao' => 'CRM_Report_BAO_ReportInstance',
|
||||
'localizable' => 0,
|
||||
) ,
|
||||
'is_active' => array(
|
||||
'name' => 'is_active',
|
||||
'type' => CRM_Utils_Type::T_BOOLEAN,
|
||||
'title' => ts('Report Instance is Active') ,
|
||||
'description' => 'Is this entry active?',
|
||||
'table_name' => 'civicrm_report_instance',
|
||||
'entity' => 'ReportInstance',
|
||||
'bao' => 'CRM_Report_BAO_ReportInstance',
|
||||
'localizable' => 0,
|
||||
'html' => array(
|
||||
'type' => 'CheckBox',
|
||||
) ,
|
||||
) ,
|
||||
'created_id' => array(
|
||||
'name' => 'created_id',
|
||||
'type' => CRM_Utils_Type::T_INT,
|
||||
'title' => ts('Report Instance Created By') ,
|
||||
'description' => 'FK to contact table.',
|
||||
'table_name' => 'civicrm_report_instance',
|
||||
'entity' => 'ReportInstance',
|
||||
'bao' => 'CRM_Report_BAO_ReportInstance',
|
||||
'localizable' => 0,
|
||||
'FKClassName' => 'CRM_Contact_DAO_Contact',
|
||||
) ,
|
||||
'owner_id' => array(
|
||||
'name' => 'owner_id',
|
||||
'type' => CRM_Utils_Type::T_INT,
|
||||
'title' => ts('Report Instance Owned By') ,
|
||||
'description' => 'FK to contact table.',
|
||||
'table_name' => 'civicrm_report_instance',
|
||||
'entity' => 'ReportInstance',
|
||||
'bao' => 'CRM_Report_BAO_ReportInstance',
|
||||
'localizable' => 0,
|
||||
'FKClassName' => 'CRM_Contact_DAO_Contact',
|
||||
) ,
|
||||
'email_subject' => array(
|
||||
'name' => 'email_subject',
|
||||
'type' => CRM_Utils_Type::T_STRING,
|
||||
'title' => ts('Report Instance email Subject') ,
|
||||
'description' => 'Subject of email',
|
||||
'maxlength' => 255,
|
||||
'size' => CRM_Utils_Type::HUGE,
|
||||
'table_name' => 'civicrm_report_instance',
|
||||
'entity' => 'ReportInstance',
|
||||
'bao' => 'CRM_Report_BAO_ReportInstance',
|
||||
'localizable' => 0,
|
||||
'html' => array(
|
||||
'type' => 'Text',
|
||||
) ,
|
||||
) ,
|
||||
'email_to' => array(
|
||||
'name' => 'email_to',
|
||||
'type' => CRM_Utils_Type::T_TEXT,
|
||||
'title' => ts('Email Report Instance To') ,
|
||||
'description' => 'comma-separated list of email addresses to send the report to',
|
||||
'table_name' => 'civicrm_report_instance',
|
||||
'entity' => 'ReportInstance',
|
||||
'bao' => 'CRM_Report_BAO_ReportInstance',
|
||||
'localizable' => 0,
|
||||
'html' => array(
|
||||
'type' => 'Text',
|
||||
) ,
|
||||
) ,
|
||||
'email_cc' => array(
|
||||
'name' => 'email_cc',
|
||||
'type' => CRM_Utils_Type::T_TEXT,
|
||||
'title' => ts('cc Email Report Instance To') ,
|
||||
'description' => 'comma-separated list of email addresses to send the report to',
|
||||
'table_name' => 'civicrm_report_instance',
|
||||
'entity' => 'ReportInstance',
|
||||
'bao' => 'CRM_Report_BAO_ReportInstance',
|
||||
'localizable' => 0,
|
||||
'html' => array(
|
||||
'type' => 'Text',
|
||||
) ,
|
||||
) ,
|
||||
'header' => array(
|
||||
'name' => 'header',
|
||||
'type' => CRM_Utils_Type::T_TEXT,
|
||||
'title' => ts('Report Instance Header') ,
|
||||
'description' => 'comma-separated list of email addresses to send the report to',
|
||||
'rows' => 4,
|
||||
'cols' => 60,
|
||||
'table_name' => 'civicrm_report_instance',
|
||||
'entity' => 'ReportInstance',
|
||||
'bao' => 'CRM_Report_BAO_ReportInstance',
|
||||
'localizable' => 0,
|
||||
'html' => array(
|
||||
'type' => 'TextArea',
|
||||
) ,
|
||||
) ,
|
||||
'footer' => array(
|
||||
'name' => 'footer',
|
||||
'type' => CRM_Utils_Type::T_TEXT,
|
||||
'title' => ts('Report Instance Footer') ,
|
||||
'description' => 'comma-separated list of email addresses to send the report to',
|
||||
'rows' => 4,
|
||||
'cols' => 60,
|
||||
'table_name' => 'civicrm_report_instance',
|
||||
'entity' => 'ReportInstance',
|
||||
'bao' => 'CRM_Report_BAO_ReportInstance',
|
||||
'localizable' => 0,
|
||||
'html' => array(
|
||||
'type' => 'TextArea',
|
||||
) ,
|
||||
) ,
|
||||
'navigation_id' => array(
|
||||
'name' => 'navigation_id',
|
||||
'type' => CRM_Utils_Type::T_INT,
|
||||
'title' => ts('Navigation ID') ,
|
||||
'description' => 'FK to navigation ID',
|
||||
'import' => true,
|
||||
'where' => 'civicrm_report_instance.navigation_id',
|
||||
'headerPattern' => '',
|
||||
'dataPattern' => '',
|
||||
'export' => true,
|
||||
'table_name' => 'civicrm_report_instance',
|
||||
'entity' => 'ReportInstance',
|
||||
'bao' => 'CRM_Report_BAO_ReportInstance',
|
||||
'localizable' => 0,
|
||||
'FKClassName' => 'CRM_Core_DAO_Navigation',
|
||||
) ,
|
||||
'drilldown_id' => array(
|
||||
'name' => 'drilldown_id',
|
||||
'type' => CRM_Utils_Type::T_INT,
|
||||
'title' => ts('Drilldown Report ID') ,
|
||||
'description' => 'FK to instance ID drilldown to',
|
||||
'import' => true,
|
||||
'where' => 'civicrm_report_instance.drilldown_id',
|
||||
'headerPattern' => '',
|
||||
'dataPattern' => '',
|
||||
'export' => true,
|
||||
'table_name' => 'civicrm_report_instance',
|
||||
'entity' => 'ReportInstance',
|
||||
'bao' => 'CRM_Report_BAO_ReportInstance',
|
||||
'localizable' => 0,
|
||||
'FKClassName' => 'CRM_Report_DAO_ReportInstance',
|
||||
) ,
|
||||
'is_reserved' => array(
|
||||
'name' => 'is_reserved',
|
||||
'type' => CRM_Utils_Type::T_BOOLEAN,
|
||||
'title' => ts('Instance is Reserved') ,
|
||||
'table_name' => 'civicrm_report_instance',
|
||||
'entity' => 'ReportInstance',
|
||||
'bao' => 'CRM_Report_BAO_ReportInstance',
|
||||
'localizable' => 0,
|
||||
'html' => array(
|
||||
'type' => 'CheckBox',
|
||||
) ,
|
||||
) ,
|
||||
);
|
||||
CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'fields_callback', Civi::$statics[__CLASS__]['fields']);
|
||||
}
|
||||
return Civi::$statics[__CLASS__]['fields'];
|
||||
}
|
||||
/**
|
||||
* Return a mapping from field-name to the corresponding key (as used in fields()).
|
||||
*
|
||||
* @return array
|
||||
* Array(string $name => string $uniqueName).
|
||||
*/
|
||||
static function &fieldKeys() {
|
||||
if (!isset(Civi::$statics[__CLASS__]['fieldKeys'])) {
|
||||
Civi::$statics[__CLASS__]['fieldKeys'] = array_flip(CRM_Utils_Array::collect('name', self::fields()));
|
||||
}
|
||||
return Civi::$statics[__CLASS__]['fieldKeys'];
|
||||
}
|
||||
/**
|
||||
* Returns the names of this table
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
static function getTableName() {
|
||||
return self::$_tableName;
|
||||
}
|
||||
/**
|
||||
* Returns if this table needs to be logged
|
||||
*
|
||||
* @return boolean
|
||||
*/
|
||||
function getLog() {
|
||||
return self::$_log;
|
||||
}
|
||||
/**
|
||||
* Returns the list of fields that can be imported
|
||||
*
|
||||
* @param bool $prefix
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
static function &import($prefix = false) {
|
||||
$r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'report_instance', $prefix, array());
|
||||
return $r;
|
||||
}
|
||||
/**
|
||||
* Returns the list of fields that can be exported
|
||||
*
|
||||
* @param bool $prefix
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
static function &export($prefix = false) {
|
||||
$r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'report_instance', $prefix, array());
|
||||
return $r;
|
||||
}
|
||||
/**
|
||||
* Returns the list of indices
|
||||
*/
|
||||
public static function indices($localize = TRUE) {
|
||||
$indices = array();
|
||||
return ($localize && !empty($indices)) ? CRM_Core_DAO_AllCoreTables::multilingualize(__CLASS__, $indices) : $indices;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue