/**
  * Returns all the column names of this table
  *
  * @return array
  */
 static function &fields()
 {
     if (!self::$_fields) {
         self::$_fields = array('id' => array('name' => 'id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Report Instance ID'), 'description' => 'Report Instance ID', 'required' => true), '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, '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, '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, '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, '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, '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, '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, '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, '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), 'is_active' => array('name' => 'is_active', 'type' => CRM_Utils_Type::T_BOOLEAN, 'title' => ts('Report Instance is Active'), 'description' => 'Is this entry active?', 'html' => array('type' => 'CheckBox')), '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, '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', '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', '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, '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, '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, '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, 'FKClassName' => 'CRM_Report_DAO_ReportInstance'), 'is_reserved' => array('name' => 'is_reserved', 'type' => CRM_Utils_Type::T_BOOLEAN, 'title' => ts('Instance is Reserved'), 'html' => array('type' => 'CheckBox')));
     }
     return self::$_fields;
 }
Beispiel #2
0
 /**
  * returns all the column names of this table
  *
  * @access public
  * @return array
  */
 static function &fields()
 {
     if (!self::$_fields) {
         self::$_fields = array('id' => array('name' => 'id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Report Instance ID'), 'required' => true), 'domain_id' => array('name' => 'domain_id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Report Instance Domain ID'), 'required' => true, 'FKClassName' => 'CRM_Core_DAO_Domain'), 'title' => array('name' => 'title', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Report Instance Title'), 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE), 'report_id' => array('name' => 'report_id', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Report template ID'), 'required' => true, 'maxlength' => 64, 'size' => CRM_Utils_Type::BIG), 'name' => array('name' => 'name', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Report instance Name'), 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE), 'args' => array('name' => 'args', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Report Instance Arguments'), 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE), 'description' => array('name' => 'description', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Report Instance description'), 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE), 'permission' => array('name' => 'permission', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Report Instance Permissions'), 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE), 'grouprole' => array('name' => 'grouprole', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Report Instance Assigned to Roles'), 'maxlength' => 1024, 'size' => CRM_Utils_Type::HUGE), 'form_values' => array('name' => 'form_values', 'type' => CRM_Utils_Type::T_TEXT, 'title' => ts('Submitted Form Values'), 'import' => true, 'where' => 'civicrm_report_instance.form_values', 'headerPattern' => '', 'dataPattern' => '', 'export' => true), 'is_active' => array('name' => 'is_active', 'type' => CRM_Utils_Type::T_BOOLEAN, 'title' => ts('Report Instance is Active')), 'email_subject' => array('name' => 'email_subject', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Report Instance email Subject'), 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE), 'email_to' => array('name' => 'email_to', 'type' => CRM_Utils_Type::T_TEXT, 'title' => ts('Email Report Instance To')), 'email_cc' => array('name' => 'email_cc', 'type' => CRM_Utils_Type::T_TEXT, 'title' => ts('cc Email Report Instance To')), 'header' => array('name' => 'header', 'type' => CRM_Utils_Type::T_TEXT, 'title' => ts('Report Instance Header'), 'rows' => 4, 'cols' => 60), 'footer' => array('name' => 'footer', 'type' => CRM_Utils_Type::T_TEXT, 'title' => ts('Report Instance Footer'), 'rows' => 4, 'cols' => 60), 'navigation_id' => array('name' => 'navigation_id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Navigation ID'), 'import' => true, 'where' => 'civicrm_report_instance.navigation_id', 'headerPattern' => '', 'dataPattern' => '', 'export' => true, 'FKClassName' => 'CRM_Core_DAO_Navigation'), 'drilldown_id' => array('name' => 'drilldown_id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Drilldown Report ID'), 'import' => true, 'where' => 'civicrm_report_instance.drilldown_id', 'headerPattern' => '', 'dataPattern' => '', 'export' => true, 'FKClassName' => 'CRM_Report_DAO_ReportInstance'), 'is_reserved' => array('name' => 'is_reserved', 'type' => CRM_Utils_Type::T_BOOLEAN, 'title' => ts('Instance is Reserved')));
     }
     return self::$_fields;
 }