__table = 'civicrm_survey'; 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() , 'campaign_id', 'civicrm_campaign', '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() , 'last_modified_id', 'civicrm_contact', '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('Survey ID') , 'description' => 'Survey id.', 'required' => true, 'table_name' => 'civicrm_survey', 'entity' => 'Survey', 'bao' => 'CRM_Campaign_BAO_Survey', ) , 'title' => array( 'name' => 'title', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Survey Title') , 'description' => 'Title of the Survey.', 'required' => true, 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, 'import' => true, 'where' => 'civicrm_survey.title', 'headerPattern' => '', 'dataPattern' => '', 'export' => true, 'table_name' => 'civicrm_survey', 'entity' => 'Survey', 'bao' => 'CRM_Campaign_BAO_Survey', ) , 'campaign_id' => array( 'name' => 'campaign_id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Survey Campaign ID') , 'description' => 'Foreign key to the Campaign.', 'default' => 'NULL', 'table_name' => 'civicrm_survey', 'entity' => 'Survey', 'bao' => 'CRM_Campaign_BAO_Survey', 'FKClassName' => 'CRM_Campaign_DAO_Campaign', 'pseudoconstant' => array( 'table' => 'civicrm_campaign', 'keyColumn' => 'id', 'labelColumn' => 'title', ) ) , 'activity_type_id' => array( 'name' => 'activity_type_id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Activity Type') , 'description' => 'Implicit FK to civicrm_option_value where option_group = activity_type', 'import' => true, 'where' => 'civicrm_survey.activity_type_id', 'headerPattern' => '', 'dataPattern' => '', 'export' => true, 'default' => 'NULL', 'table_name' => 'civicrm_survey', 'entity' => 'Survey', 'bao' => 'CRM_Campaign_BAO_Survey', 'html' => array( 'type' => 'Select', ) , 'pseudoconstant' => array( 'optionGroupName' => 'activity_type', 'optionEditPath' => 'civicrm/admin/options/activity_type', ) ) , 'recontact_interval' => array( 'name' => 'recontact_interval', 'type' => CRM_Utils_Type::T_TEXT, 'title' => ts('Follow up Interval') , 'description' => 'Recontact intervals for each status.', 'rows' => 20, 'cols' => 80, 'table_name' => 'civicrm_survey', 'entity' => 'Survey', 'bao' => 'CRM_Campaign_BAO_Survey', 'html' => array( 'type' => 'TextArea', ) , ) , 'instructions' => array( 'name' => 'instructions', 'type' => CRM_Utils_Type::T_TEXT, 'title' => ts('Instructions') , 'description' => 'Script instructions for volunteers to use for the survey.', 'rows' => 20, 'cols' => 80, 'table_name' => 'civicrm_survey', 'entity' => 'Survey', 'bao' => 'CRM_Campaign_BAO_Survey', 'html' => array( 'type' => 'TextArea', ) , ) , 'release_frequency' => array( 'name' => 'release_frequency', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Survey Hold Duration') , 'description' => 'Number of days for recurrence of release.', 'default' => 'NULL', 'table_name' => 'civicrm_survey', 'entity' => 'Survey', 'bao' => 'CRM_Campaign_BAO_Survey', ) , 'max_number_of_contacts' => array( 'name' => 'max_number_of_contacts', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Maximum number of contacts') , 'description' => 'Maximum number of contacts to allow for survey.', 'default' => 'NULL', 'table_name' => 'civicrm_survey', 'entity' => 'Survey', 'bao' => 'CRM_Campaign_BAO_Survey', ) , 'default_number_of_contacts' => array( 'name' => 'default_number_of_contacts', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Default number of contacts') , 'description' => 'Default number of contacts to allow for survey.', 'default' => 'NULL', 'table_name' => 'civicrm_survey', 'entity' => 'Survey', 'bao' => 'CRM_Campaign_BAO_Survey', ) , 'is_active' => array( 'name' => 'is_active', 'type' => CRM_Utils_Type::T_BOOLEAN, 'title' => ts('Survey Is Active') , 'description' => 'Is this survey enabled or disabled/cancelled?', 'default' => '1', 'table_name' => 'civicrm_survey', 'entity' => 'Survey', 'bao' => 'CRM_Campaign_BAO_Survey', ) , 'is_default' => array( 'name' => 'is_default', 'type' => CRM_Utils_Type::T_BOOLEAN, 'title' => ts('Is Default Survey') , 'description' => 'Is this default survey?', 'table_name' => 'civicrm_survey', 'entity' => 'Survey', 'bao' => 'CRM_Campaign_BAO_Survey', ) , 'created_id' => array( 'name' => 'created_id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Survey Created By') , 'description' => 'FK to civicrm_contact, who created this Survey.', 'table_name' => 'civicrm_survey', 'entity' => 'Survey', 'bao' => 'CRM_Campaign_BAO_Survey', 'FKClassName' => 'CRM_Contact_DAO_Contact', ) , 'created_date' => array( 'name' => 'created_date', 'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME, 'title' => ts('Campaign Created Date') , 'description' => 'Date and time that Survey was created.', 'table_name' => 'civicrm_survey', 'entity' => 'Survey', 'bao' => 'CRM_Campaign_BAO_Survey', ) , 'last_modified_id' => array( 'name' => 'last_modified_id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Survey Modified') , 'description' => 'FK to civicrm_contact, who recently edited this Survey.', 'table_name' => 'civicrm_survey', 'entity' => 'Survey', 'bao' => 'CRM_Campaign_BAO_Survey', 'FKClassName' => 'CRM_Contact_DAO_Contact', ) , 'last_modified_date' => array( 'name' => 'last_modified_date', 'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME, 'title' => ts('Survey Modified On') , 'description' => 'Date and time that Survey was edited last time.', 'table_name' => 'civicrm_survey', 'entity' => 'Survey', 'bao' => 'CRM_Campaign_BAO_Survey', ) , 'result_id' => array( 'name' => 'result_id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Survey Result') , 'description' => 'Used to store option group id.', 'default' => 'NULL', 'table_name' => 'civicrm_survey', 'entity' => 'Survey', 'bao' => 'CRM_Campaign_BAO_Survey', ) , 'bypass_confirm' => array( 'name' => 'bypass_confirm', 'type' => CRM_Utils_Type::T_BOOLEAN, 'title' => ts('No Email Verification') , 'description' => 'Bypass the email verification.', 'table_name' => 'civicrm_survey', 'entity' => 'Survey', 'bao' => 'CRM_Campaign_BAO_Survey', ) , 'thankyou_title' => array( 'name' => 'thankyou_title', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Thank-you Title') , 'description' => 'Title for Thank-you page (header title tag, and display at the top of the page).', 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, 'table_name' => 'civicrm_survey', 'entity' => 'Survey', 'bao' => 'CRM_Campaign_BAO_Survey', ) , 'thankyou_text' => array( 'name' => 'thankyou_text', 'type' => CRM_Utils_Type::T_TEXT, 'title' => ts('Thank-you Text') , 'description' => 'text and html allowed. displayed above result on success page', 'rows' => 8, 'cols' => 60, 'table_name' => 'civicrm_survey', 'entity' => 'Survey', 'bao' => 'CRM_Campaign_BAO_Survey', 'html' => array( 'type' => 'TextArea', ) , ) , 'is_share' => array( 'name' => 'is_share', 'type' => CRM_Utils_Type::T_BOOLEAN, 'title' => ts('Is shared through social media') , 'description' => 'Can people share the petition through social media?', 'default' => '1', 'table_name' => 'civicrm_survey', 'entity' => 'Survey', 'bao' => 'CRM_Campaign_BAO_Survey', ) , ); 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 CRM_Core_DAO::getLocaleTableName(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__, 'survey', $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__, 'survey', $prefix, array()); return $r; } }