Exemplo n.º 1
0
 /**
  * returns all the column names of this table
  *
  * @access public
  * @return array
  */
 function &fields()
 {
     if (!self::$_fields) {
         self::$_fields = array('id' => array('name' => 'id', 'type' => CRM_Utils_Type::T_INT, 'required' => true), 'uf_group_id' => array('name' => 'uf_group_id', 'type' => CRM_Utils_Type::T_INT, 'required' => true, 'FKClassName' => 'CRM_Core_DAO_UFGroup'), 'field_name' => array('name' => 'field_name', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Field Name'), 'maxlength' => 64, 'size' => CRM_Utils_Type::BIG), 'is_active' => array('name' => 'is_active', 'type' => CRM_Utils_Type::T_BOOLEAN, 'default' => ''), 'is_view' => array('name' => 'is_view', 'type' => CRM_Utils_Type::T_BOOLEAN), 'is_required' => array('name' => 'is_required', 'type' => CRM_Utils_Type::T_BOOLEAN), 'weight' => array('name' => 'weight', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Weight'), 'required' => true, 'default' => ''), 'help_post' => array('name' => 'help_post', 'type' => CRM_Utils_Type::T_TEXT, 'title' => ts('Help Post')), 'help_pre' => array('name' => 'help_pre', 'type' => CRM_Utils_Type::T_TEXT, 'title' => ts('Help Pre')), 'visibility' => array('name' => 'visibility', 'type' => CRM_Utils_Type::T_ENUM, 'title' => ts('Visibility'), 'default' => 'User and User Admin Only', 'enumValues' => 'User and User Admin Only,Public Pages,Public Pages and Listings'), 'in_selector' => array('name' => 'in_selector', 'type' => CRM_Utils_Type::T_BOOLEAN, 'title' => ts('In Selector')), 'is_searchable' => array('name' => 'is_searchable', 'type' => CRM_Utils_Type::T_BOOLEAN), 'location_type_id' => array('name' => 'location_type_id', 'type' => CRM_Utils_Type::T_INT, 'FKClassName' => 'CRM_Core_DAO_LocationType'), 'phone_type_id' => array('name' => 'phone_type_id', 'type' => CRM_Utils_Type::T_INT), 'label' => array('name' => 'label', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Label'), 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE), 'field_type' => array('name' => 'field_type', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Field Type'), 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE), 'is_reserved' => array('name' => 'is_reserved', 'type' => CRM_Utils_Type::T_BOOLEAN));
     }
     return self::$_fields;
 }
Exemplo n.º 2
0
 /**
  * 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('Profile Field ID'), 'description' => 'Unique table ID', 'required' => true), 'uf_group_id' => array('name' => 'uf_group_id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Profile ID'), 'description' => 'Which form does this field belong to.', 'required' => true, 'FKClassName' => 'CRM_Core_DAO_UFGroup', 'html' => array('type' => 'Select'), 'pseudoconstant' => array('table' => 'civicrm_uf_group', 'keyColumn' => 'id', 'labelColumn' => 'title')), 'field_name' => array('name' => 'field_name', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Profile Field Name'), 'description' => 'Name for CiviCRM field which is being exposed for sharing.', 'required' => true, 'maxlength' => 64, 'size' => CRM_Utils_Type::BIG), 'is_active' => array('name' => 'is_active', 'type' => CRM_Utils_Type::T_BOOLEAN, 'title' => ts('Profile Field Is Active'), 'description' => 'Is this field currently shareable? If false, hide the field for all sharing contexts.', 'default' => '1'), 'is_view' => array('name' => 'is_view', 'type' => CRM_Utils_Type::T_BOOLEAN, 'title' => ts('Profile Is View Only'), 'description' => 'the field is view only and not editable in user forms.'), 'is_required' => array('name' => 'is_required', 'type' => CRM_Utils_Type::T_BOOLEAN, 'title' => ts('Profile Field Is Required'), 'description' => 'Is this field required when included in a user or registration form?'), 'weight' => array('name' => 'weight', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Order'), 'description' => 'Controls field display order when user framework fields are displayed in registration and account editing forms.', 'required' => true, 'default' => '1'), 'help_post' => array('name' => 'help_post', 'type' => CRM_Utils_Type::T_TEXT, 'title' => ts('Profile Field Post Help'), 'description' => 'Description and/or help text to display after this field.'), 'help_pre' => array('name' => 'help_pre', 'type' => CRM_Utils_Type::T_TEXT, 'title' => ts('Profile Field Pre Help'), 'description' => 'Description and/or help text to display before this field.'), 'visibility' => array('name' => 'visibility', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Profile Field Visibility'), 'description' => 'In what context(s) is this field visible.', 'maxlength' => 32, 'size' => CRM_Utils_Type::MEDIUM, 'default' => 'User and User Admin Only', 'html' => array('type' => 'Select'), 'pseudoconstant' => array('callback' => 'CRM_Core_SelectValues::ufVisibility')), 'in_selector' => array('name' => 'in_selector', 'type' => CRM_Utils_Type::T_BOOLEAN, 'title' => ts('Profile Field Is a Filter'), 'description' => 'Is this field included as a column in the selector table?'), 'is_searchable' => array('name' => 'is_searchable', 'type' => CRM_Utils_Type::T_BOOLEAN, 'title' => ts('Profile Field Is Searchable'), 'description' => 'Is this field included search form of profile?'), 'location_type_id' => array('name' => 'location_type_id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Profile Field Location Type'), 'description' => 'Location type of this mapping, if required', 'FKClassName' => 'CRM_Core_DAO_LocationType'), 'phone_type_id' => array('name' => 'phone_type_id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Profile Field Phone Type'), 'description' => 'Phone Type Id, if required'), 'website_type_id' => array('name' => 'website_type_id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Profile Field Website Type'), 'description' => 'Website Type Id, if required'), 'label' => array('name' => 'label', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Profile Field Label'), 'description' => 'To save label for fields.', 'required' => true, 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE), 'field_type' => array('name' => 'field_type', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Profile Field Type'), 'description' => 'This field saves field type (ie individual,household.. field etc).', 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE), 'is_reserved' => array('name' => 'is_reserved', 'type' => CRM_Utils_Type::T_BOOLEAN, 'title' => ts('Profile Field Is Reserved'), 'description' => 'Is this field reserved for use by some other CiviCRM functionality?'), 'is_multi_summary' => array('name' => 'is_multi_summary', 'type' => CRM_Utils_Type::T_BOOLEAN, 'title' => ts('Profile Field Supports Multiple'), 'description' => 'Include in multi-record listing?'));
     }
     return self::$_fields;
 }