__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' => 64, 'size' => CRM_Utils_Type::BIG, '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; } }