当前位置: 首页>>代码示例>>PHP>>正文


PHP CRM_Price_DAO_PriceField::_fields方法代码示例

本文整理汇总了PHP中CRM_Price_DAO_PriceField::_fields方法的典型用法代码示例。如果您正苦于以下问题:PHP CRM_Price_DAO_PriceField::_fields方法的具体用法?PHP CRM_Price_DAO_PriceField::_fields怎么用?PHP CRM_Price_DAO_PriceField::_fields使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在CRM_Price_DAO_PriceField的用法示例。


在下文中一共展示了CRM_Price_DAO_PriceField::_fields方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: array

 /**
  * 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;
 }
开发者ID:kidaa30,项目名称:yes,代码行数:12,代码来源:PriceField.php

示例2: array

 /**
  * 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;
 }
开发者ID:hguru,项目名称:224Civi,代码行数:13,代码来源:PriceField.php


注:本文中的CRM_Price_DAO_PriceField::_fields方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。