__table = 'civicrm_campaign'; 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() , 'parent_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('Campaign ID') , 'description' => 'Unique Campaign ID.', 'required' => true, 'import' => true, 'where' => 'civicrm_campaign.id', 'headerPattern' => '', 'dataPattern' => '', 'export' => true, ) , 'name' => array( 'name' => 'name', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Campaign Name') , 'description' => 'Name of the Campaign.', 'required' => true, 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, 'import' => true, 'where' => 'civicrm_campaign.name', 'headerPattern' => '', 'dataPattern' => '', 'export' => true, 'html' => array( 'type' => 'Text', ) , ) , 'title' => array( 'name' => 'title', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Campaign Title') , 'description' => 'Title of the Campaign.', 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, 'import' => true, 'where' => 'civicrm_campaign.title', 'headerPattern' => '', 'dataPattern' => '', 'export' => true, 'html' => array( 'type' => 'Text', ) , ) , 'description' => array( 'name' => 'description', 'type' => CRM_Utils_Type::T_TEXT, 'title' => ts('Campaign Description') , 'description' => 'Full description of Campaign.', 'rows' => 8, 'cols' => 60, 'html' => array( 'type' => 'TextArea', ) , ) , 'start_date' => array( 'name' => 'start_date', 'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME, 'title' => ts('Campaign Start Date') , 'description' => 'Date and time that Campaign starts.', 'import' => true, 'where' => 'civicrm_campaign.start_date', 'headerPattern' => '/^start|(s(tart\s)?date)$/i', 'dataPattern' => '', 'export' => true, 'html' => array( 'type' => 'Select Date', ) , ) , 'end_date' => array( 'name' => 'end_date', 'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME, 'title' => ts('Campaign End Date') , 'description' => 'Date and time that Campaign ends.', 'import' => true, 'where' => 'civicrm_campaign.end_date', 'headerPattern' => '/^end|(e(nd\s)?date)$/i', 'dataPattern' => '', 'export' => true, 'html' => array( 'type' => 'Select Date', ) , ) , 'campaign_type_id' => array( 'name' => 'campaign_type_id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Campaign Type') , 'description' => 'Campaign Type ID.Implicit FK to civicrm_option_value where option_group = campaign_type', 'import' => true, 'where' => 'civicrm_campaign.campaign_type_id', 'headerPattern' => '', 'dataPattern' => '', 'export' => true, 'default' => 'NULL', 'html' => array( 'type' => 'Select', ) , 'pseudoconstant' => array( 'optionGroupName' => 'campaign_type', 'optionEditPath' => 'civicrm/admin/options/campaign_type', ) ) , 'status_id' => array( 'name' => 'status_id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Campaign Status') , 'description' => 'Campaign status ID.Implicit FK to civicrm_option_value where option_group = campaign_status', 'import' => true, 'where' => 'civicrm_campaign.status_id', 'headerPattern' => '', 'dataPattern' => '', 'export' => true, 'default' => 'NULL', 'html' => array( 'type' => 'Select', ) , 'pseudoconstant' => array( 'optionGroupName' => 'campaign_status', 'optionEditPath' => 'civicrm/admin/options/campaign_status', ) ) , 'external_identifier' => array( 'name' => 'external_identifier', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Campaign External ID') , 'description' => 'Unique trusted external ID (generally from a legacy app/datasource). Particularly useful for deduping operations.', 'maxlength' => 32, 'size' => CRM_Utils_Type::MEDIUM, 'import' => true, 'where' => 'civicrm_campaign.external_identifier', 'headerPattern' => '/external\s?id/i', 'dataPattern' => '/^\d{11,}$/', 'export' => true, 'html' => array( 'type' => 'Text', ) , ) , 'parent_id' => array( 'name' => 'parent_id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Parent Campaign') , 'description' => 'Optional parent id for this Campaign.', 'import' => true, 'where' => 'civicrm_campaign.parent_id', 'headerPattern' => '', 'dataPattern' => '', 'export' => true, 'default' => 'NULL', 'FKClassName' => 'CRM_Campaign_DAO_Campaign', 'html' => array( 'type' => 'EntityRef', ) , ) , 'is_active' => array( 'name' => 'is_active', 'type' => CRM_Utils_Type::T_BOOLEAN, 'title' => ts('Is Campaign Active?') , 'description' => 'Is this Campaign enabled or disabled/cancelled?', 'default' => '1', 'html' => array( 'type' => 'CheckBox', ) , ) , 'created_id' => array( 'name' => 'created_id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Campaign Created By') , 'description' => 'FK to civicrm_contact, who created this Campaign.', '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 Campaign was created.', 'html' => array( 'type' => 'Select Date', ) , ) , 'last_modified_id' => array( 'name' => 'last_modified_id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Campaign Modified By') , 'description' => 'FK to civicrm_contact, who recently edited this Campaign.', '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('Campaign Modified Date') , 'description' => 'Date and time that Campaign was edited last time.', ) , 'goal_general' => array( 'name' => 'goal_general', 'type' => CRM_Utils_Type::T_TEXT, 'title' => ts('Campaign Goals') , 'description' => 'General goals for Campaign.', 'html' => array( 'type' => 'RichTextEditor', ) , ) , 'goal_revenue' => array( 'name' => 'goal_revenue', 'type' => CRM_Utils_Type::T_MONEY, 'title' => ts('Goal Revenue') , 'description' => 'The target revenue for this campaign.', 'precision' => array( 20, 2 ) , 'html' => array( 'type' => 'Text', ) , ) , ); 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__, 'campaign', $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__, 'campaign', $prefix, array()); return $r; } }