1) * * @var boolean */ public $is_required; /** * If non-zero, do not show this field before the date specified * * @var datetime */ public $active_on; /** * If non-zero, do not show this field after the date specified * * @var datetime */ public $expire_on; /** * Optional scripting attributes for field * * @var string */ public $javascript; /** * Implicit FK to civicrm_option_group with name = 'visibility' * * @var int unsigned */ public $visibility_id; /** * Class constructor. */ function __construct() { $this->__table = 'civicrm_price_field'; parent::__construct(); } /** * Returns foreign keys and entity references. * * @return array * [CRM_Core_Reference_Interface] */ static function getReferenceColumns() { if (!isset(Civi::$statics[__CLASS__]['links'])) { Civi::$statics[__CLASS__]['links'] = static ::createReferenceColumns(__CLASS__); Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName() , 'price_set_id', 'civicrm_price_set', 'id'); CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'links_callback', Civi::$statics[__CLASS__]['links']); } return Civi::$statics[__CLASS__]['links']; } /** * Returns all the column names of this table * * @return array */ static function &fields() { if (!isset(Civi::$statics[__CLASS__]['fields'])) { Civi::$statics[__CLASS__]['fields'] = array( 'id' => array( 'name' => 'id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Price Field ID') , 'description' => 'Price Field', 'required' => true, 'table_name' => 'civicrm_price_field', 'entity' => 'PriceField', 'bao' => 'CRM_Price_BAO_PriceField', ) , '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, 'table_name' => 'civicrm_price_field', 'entity' => 'PriceField', 'bao' => 'CRM_Price_BAO_PriceField', '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, 'table_name' => 'civicrm_price_field', 'entity' => 'PriceField', 'bao' => 'CRM_Price_BAO_PriceField', '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, 'table_name' => 'civicrm_price_field', 'entity' => 'PriceField', 'bao' => 'CRM_Price_BAO_PriceField', '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, 'table_name' => 'civicrm_price_field', 'entity' => 'PriceField', 'bao' => 'CRM_Price_BAO_PriceField', '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?', 'table_name' => 'civicrm_price_field', 'entity' => 'PriceField', 'bao' => 'CRM_Price_BAO_PriceField', '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, 'table_name' => 'civicrm_price_field', 'entity' => 'PriceField', 'bao' => 'CRM_Price_BAO_PriceField', '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, 'table_name' => 'civicrm_price_field', 'entity' => 'PriceField', 'bao' => 'CRM_Price_BAO_PriceField', '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', 'table_name' => 'civicrm_price_field', 'entity' => 'PriceField', 'bao' => 'CRM_Price_BAO_PriceField', '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', 'table_name' => 'civicrm_price_field', 'entity' => 'PriceField', 'bao' => 'CRM_Price_BAO_PriceField', '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', 'table_name' => 'civicrm_price_field', 'entity' => 'PriceField', 'bao' => 'CRM_Price_BAO_PriceField', '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', 'table_name' => 'civicrm_price_field', 'entity' => 'PriceField', 'bao' => 'CRM_Price_BAO_PriceField', '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', 'table_name' => 'civicrm_price_field', 'entity' => 'PriceField', 'bao' => 'CRM_Price_BAO_PriceField', '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', 'table_name' => 'civicrm_price_field', 'entity' => 'PriceField', 'bao' => 'CRM_Price_BAO_PriceField', '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', 'table_name' => 'civicrm_price_field', 'entity' => 'PriceField', 'bao' => 'CRM_Price_BAO_PriceField', '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, 'table_name' => 'civicrm_price_field', 'entity' => 'PriceField', 'bao' => 'CRM_Price_BAO_PriceField', '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', 'table_name' => 'civicrm_price_field', 'entity' => 'PriceField', 'bao' => 'CRM_Price_BAO_PriceField', 'html' => array( 'type' => 'Select', ) , 'pseudoconstant' => array( 'optionGroupName' => 'visibility', 'optionEditPath' => 'civicrm/admin/options/visibility', ) ) , ); CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'fields_callback', Civi::$statics[__CLASS__]['fields']); } return Civi::$statics[__CLASS__]['fields']; } /** * Return a mapping from field-name to the corresponding key (as used in fields()). * * @return array * Array(string $name => string $uniqueName). */ static function &fieldKeys() { if (!isset(Civi::$statics[__CLASS__]['fieldKeys'])) { Civi::$statics[__CLASS__]['fieldKeys'] = array_flip(CRM_Utils_Array::collect('name', self::fields())); } return Civi::$statics[__CLASS__]['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) { $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'price_field', $prefix, array()); return $r; } /** * Returns the list of fields that can be exported * * @param bool $prefix * * @return array */ static function &export($prefix = false) { $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'price_field', $prefix, array()); return $r; } }