示例#1
0
文件: Friend.php 项目: hguru/224Civi
 /**
  * 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, 'required' => true), 'entity_table' => array('name' => 'entity_table', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Entity Table'), 'required' => true, 'maxlength' => 64, 'size' => CRM_Utils_Type::BIG), 'entity_id' => array('name' => 'entity_id', 'type' => CRM_Utils_Type::T_INT, 'required' => true), 'title' => array('name' => 'title', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Title'), 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE), 'intro' => array('name' => 'intro', 'type' => CRM_Utils_Type::T_TEXT, 'title' => ts('Intro')), 'suggested_message' => array('name' => 'suggested_message', 'type' => CRM_Utils_Type::T_TEXT, 'title' => ts('Suggested Message')), 'general_link' => array('name' => 'general_link', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('General Link'), 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, 'import' => true, 'where' => 'civicrm_tell_friend.general_link', 'headerPattern' => '', 'dataPattern' => '', 'export' => true), 'thankyou_title' => array('name' => 'thankyou_title', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Thankyou Title'), 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE), 'thankyou_text' => array('name' => 'thankyou_text', 'type' => CRM_Utils_Type::T_TEXT, 'title' => ts('Thankyou Text')), 'is_active' => array('name' => 'is_active', 'type' => CRM_Utils_Type::T_BOOLEAN));
     }
     return self::$_fields;
 }
示例#2
0
文件: Friend.php 项目: kidaa30/yes
 /**
  * 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;
 }