Example #1
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('Price Field ID'), 'description' => 'Price Field', 'required' => true), 'price_set_id' => array('name' => 'price_set_id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Price Set'), 'description' => 'FK to civicrm_price_set', 'required' => true, 'FKClassName' => 'CRM_Price_DAO_PriceSet'), 'name' => array('name' => 'name', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Name'), 'description' => 'Variable name/programmatic handle for this field.', 'required' => true, 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, 'html' => array('type' => 'Text')), 'label' => array('name' => 'label', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Label'), 'description' => 'Text for form field label (also friendly name for administering this field).', 'required' => true, 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, 'html' => array('type' => 'Text')), 'html_type' => array('name' => 'html_type', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Html Type'), 'required' => true, 'maxlength' => 12, 'size' => CRM_Utils_Type::TWELVE, 'html' => array('type' => 'Select'), 'pseudoconstant' => array('callback' => 'CRM_Price_BAO_PriceField::htmlTypes')), 'is_enter_qty' => array('name' => 'is_enter_qty', 'type' => CRM_Utils_Type::T_BOOLEAN, 'title' => ts('Price Field Quantity Required?'), 'description' => 'Enter a quantity for this field?', 'html' => array('type' => 'CheckBox')), 'help_pre' => array('name' => 'help_pre', 'type' => CRM_Utils_Type::T_TEXT, 'title' => ts('Price Field Pre Text'), 'description' => 'Description and/or help text to display before this field.', 'rows' => 4, 'cols' => 80, 'html' => array('type' => 'TextArea')), 'help_post' => array('name' => 'help_post', 'type' => CRM_Utils_Type::T_TEXT, 'title' => ts('Price Field Post Text'), 'description' => 'Description and/or help text to display after this field.', 'rows' => 4, 'cols' => 80, 'html' => array('type' => 'TextArea')), 'weight' => array('name' => 'weight', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Order'), 'description' => 'Order in which the fields should appear', 'default' => '1', 'html' => array('type' => 'Select')), 'is_display_amounts' => array('name' => 'is_display_amounts', 'type' => CRM_Utils_Type::T_BOOLEAN, 'title' => ts('Price Field Show Amounts?'), 'description' => 'Should the price be displayed next to the label for each option?', 'default' => '1', 'html' => array('type' => 'CheckBox')), 'options_per_line' => array('name' => 'options_per_line', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Price Field Options per Row'), 'description' => 'number of options per line for checkbox and radio', 'default' => '1', 'html' => array('type' => 'Text')), 'is_active' => array('name' => 'is_active', 'type' => CRM_Utils_Type::T_BOOLEAN, 'title' => ts('Price Field Is Active?'), 'description' => 'Is this price field active', 'default' => '1', 'html' => array('type' => 'CheckBox')), 'is_required' => array('name' => 'is_required', 'type' => CRM_Utils_Type::T_BOOLEAN, 'title' => ts('Price Field is Required?'), 'description' => 'Is this price field required (value must be > 1)', 'default' => '1', 'html' => array('type' => 'CheckBox')), 'active_on' => array('name' => 'active_on', 'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME, 'title' => ts('Price Field Start Date'), 'description' => 'If non-zero, do not show this field before the date specified', 'default' => 'NULL', 'html' => array('type' => 'CheckBox')), 'expire_on' => array('name' => 'expire_on', 'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME, 'title' => ts('Price Field End Date'), 'description' => 'If non-zero, do not show this field after the date specified', 'default' => 'NULL', 'html' => array('type' => 'Select Date')), 'javascript' => array('name' => 'javascript', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Price Field Javascript'), 'description' => 'Optional scripting attributes for field', 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, 'html' => array('type' => 'Text')), 'visibility_id' => array('name' => 'visibility_id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Price Field Visibility'), 'description' => 'Implicit FK to civicrm_option_group with name = \'visibility\'', 'default' => '1', 'html' => array('type' => 'Select'), 'pseudoconstant' => array('optionGroupName' => 'visibility', 'optionEditPath' => 'civicrm/admin/options/visibility')));
     }
     return self::$_fields;
 }
Example #2
0
 /**
  * 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), 'price_set_id' => array('name' => 'price_set_id', 'type' => CRM_Utils_Type::T_INT, 'required' => true, 'FKClassName' => 'CRM_Price_DAO_PriceSet'), 'name' => array('name' => 'name', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Name'), 'required' => true, 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE), 'label' => array('name' => 'label', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Label'), 'required' => true, 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE), 'html_type' => array('name' => 'html_type', 'type' => CRM_Utils_Type::T_ENUM, 'title' => ts('Html Type'), 'required' => true, 'enumValues' => 'Text, Select, Radio, CheckBox'), 'is_enter_qty' => array('name' => 'is_enter_qty', 'type' => CRM_Utils_Type::T_BOOLEAN), 'help_pre' => array('name' => 'help_pre', 'type' => CRM_Utils_Type::T_TEXT, 'title' => ts('Help Pre'), 'rows' => 4, 'cols' => 80), 'help_post' => array('name' => 'help_post', 'type' => CRM_Utils_Type::T_TEXT, 'title' => ts('Help Post'), 'rows' => 4, 'cols' => 80), 'weight' => array('name' => 'weight', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Weight'), 'default' => '1'), 'is_display_amounts' => array('name' => 'is_display_amounts', 'type' => CRM_Utils_Type::T_BOOLEAN, 'default' => '1'), 'options_per_line' => array('name' => 'options_per_line', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Options Per Line'), 'default' => '1'), 'is_active' => array('name' => 'is_active', 'type' => CRM_Utils_Type::T_BOOLEAN, 'default' => '1'), 'is_required' => array('name' => 'is_required', 'type' => CRM_Utils_Type::T_BOOLEAN, 'default' => '1'), 'active_on' => array('name' => 'active_on', 'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME, 'title' => ts('Active On'), 'default' => 'NULL'), 'expire_on' => array('name' => 'expire_on', 'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME, 'title' => ts('Expire On'), 'default' => 'NULL'), 'javascript' => array('name' => 'javascript', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Javascript'), 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE), 'visibility_id' => array('name' => 'visibility_id', 'type' => CRM_Utils_Type::T_INT, 'default' => '1', 'pseudoconstant' => array('optionGroupName' => 'visibility')));
     }
     return self::$_fields;
 }