__table = 'civicrm_tell_friend'; parent::__construct(); } /** * Returns foreign keys and entity references * * @return array * [CRM_Core_Reference_Interface] */ static function getReferenceColumns() { if (!self::$_links) { self::$_links = static ::createReferenceColumns(__CLASS__); self::$_links[] = new CRM_Core_Reference_Dynamic(self::getTableName() , 'entity_id', NULL, 'id', 'entity_table'); } return self::$_links; } /** * 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, 'description' => 'Friend ID', 'required' => true, ) , 'entity_table' => array( 'name' => 'entity_table', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Entity Table') , 'description' => 'Name of table where item being referenced is stored.', 'required' => true, 'maxlength' => 64, 'size' => CRM_Utils_Type::BIG, ) , 'entity_id' => array( 'name' => 'entity_id', 'type' => CRM_Utils_Type::T_INT, 'description' => 'Foreign key to the referenced item.', 'required' => true, ) , 'title' => array( 'name' => 'title', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Title') , 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, 'html' => array( 'type' => 'Text', ) , ) , 'intro' => array( 'name' => 'intro', 'type' => CRM_Utils_Type::T_TEXT, 'title' => ts('Intro') , 'description' => 'Introductory message to contributor or participant displayed on the Tell a Friend form.', 'html' => array( 'type' => 'Text', ) , ) , 'suggested_message' => array( 'name' => 'suggested_message', 'type' => CRM_Utils_Type::T_TEXT, 'title' => ts('Suggested Message') , 'description' => 'Suggested message to friends, provided as default on the Tell A Friend form.', 'html' => array( 'type' => 'Text', ) , ) , 'general_link' => array( 'name' => 'general_link', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('General Link') , 'description' => 'URL for general info about the organization - included in the email sent to friends.', 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, 'import' => true, 'where' => 'civicrm_tell_friend.general_link', 'headerPattern' => '', 'dataPattern' => '', 'export' => true, 'html' => array( 'type' => 'Text', ) , ) , 'thankyou_title' => array( 'name' => 'thankyou_title', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Thankyou Title') , 'description' => 'Text for Tell a Friend thank you page header and HTML title.', 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, 'html' => array( 'type' => 'Text', ) , ) , 'thankyou_text' => array( 'name' => 'thankyou_text', 'type' => CRM_Utils_Type::T_TEXT, 'title' => ts('Thankyou Text') , 'description' => 'Thank you message displayed on success page.', 'html' => array( 'type' => 'Text', ) , ) , 'is_active' => array( 'name' => 'is_active', 'type' => CRM_Utils_Type::T_BOOLEAN, 'html' => array( 'type' => 'CheckBox', ) , ) , ); } return self::$_fields; } /** * Returns an array containing, for each field, the arary key used for that * field in self::$_fields. * * @return array */ static function &fieldKeys() { if (!(self::$_fieldKeys)) { self::$_fieldKeys = array( 'id' => 'id', 'entity_table' => 'entity_table', 'entity_id' => 'entity_id', 'title' => 'title', 'intro' => 'intro', 'suggested_message' => 'suggested_message', 'general_link' => 'general_link', 'thankyou_title' => 'thankyou_title', 'thankyou_text' => 'thankyou_text', 'is_active' => 'is_active', ); } return self::$_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) { if (!(self::$_import)) { self::$_import = array(); $fields = self::fields(); foreach($fields as $name => $field) { if (CRM_Utils_Array::value('import', $field)) { if ($prefix) { self::$_import['tell_friend'] = & $fields[$name]; } else { self::$_import[$name] = & $fields[$name]; } } } } return self::$_import; } /** * Returns the list of fields that can be exported * * @param bool $prefix * * @return array */ static function &export($prefix = false) { if (!(self::$_export)) { self::$_export = array(); $fields = self::fields(); foreach($fields as $name => $field) { if (CRM_Utils_Array::value('export', $field)) { if ($prefix) { self::$_export['tell_friend'] = & $fields[$name]; } else { self::$_export[$name] = & $fields[$name]; } } } } return self::$_export; } }