1) * * @var bool */ 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 */ public $visibility_id; /** * Class constructor. */ public function __construct() { $this->__table = 'civicrm_price_field'; parent::__construct(); } /** * Returns localized title of this entity. * * @param bool $plural * Whether to return the plural version of the title. */ public static function getEntityTitle($plural = FALSE) { return $plural ? ts('Price Fields') : ts('Price Field'); } /** * Returns foreign keys and entity references. * * @return array * [CRM_Core_Reference_Interface] */ public 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 */ public static function &fields() { if (!isset(Civi::$statics[__CLASS__]['fields'])) { Civi::$statics[__CLASS__]['fields'] = [ 'id' => [ 'name' => 'id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Price Field ID'), 'description' => ts('Price Field'), 'required' => TRUE, 'where' => 'civicrm_price_field.id', 'table_name' => 'civicrm_price_field', 'entity' => 'PriceField', 'bao' => 'CRM_Price_BAO_PriceField', 'localizable' => 0, 'add' => '1.8', ], 'price_set_id' => [ 'name' => 'price_set_id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Price Set'), 'description' => ts('FK to civicrm_price_set'), 'required' => TRUE, 'where' => 'civicrm_price_field.price_set_id', 'table_name' => 'civicrm_price_field', 'entity' => 'PriceField', 'bao' => 'CRM_Price_BAO_PriceField', 'localizable' => 0, 'FKClassName' => 'CRM_Price_DAO_PriceSet', 'pseudoconstant' => [ 'table' => 'civicrm_price_set', 'keyColumn' => 'id', 'labelColumn' => 'title', 'nameColumn' => 'name', ], 'add' => '1.8', ], 'name' => [ 'name' => 'name', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Name'), 'description' => ts('Variable name/programmatic handle for this field.'), 'required' => TRUE, 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, 'where' => 'civicrm_price_field.name', 'table_name' => 'civicrm_price_field', 'entity' => 'PriceField', 'bao' => 'CRM_Price_BAO_PriceField', 'localizable' => 0, 'html' => [ 'type' => 'Text', ], 'add' => '1.8', ], 'label' => [ 'name' => 'label', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Label'), 'description' => ts('Text for form field label (also friendly name for administering this field).'), 'required' => TRUE, 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, 'where' => 'civicrm_price_field.label', 'table_name' => 'civicrm_price_field', 'entity' => 'PriceField', 'bao' => 'CRM_Price_BAO_PriceField', 'localizable' => 1, 'html' => [ 'type' => 'Text', ], 'add' => '1.8', ], 'html_type' => [ 'name' => 'html_type', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Html Type'), 'required' => TRUE, 'maxlength' => 12, 'size' => CRM_Utils_Type::TWELVE, 'where' => 'civicrm_price_field.html_type', 'table_name' => 'civicrm_price_field', 'entity' => 'PriceField', 'bao' => 'CRM_Price_BAO_PriceField', 'localizable' => 0, 'html' => [ 'type' => 'Select', ], 'pseudoconstant' => [ 'callback' => 'CRM_Price_BAO_PriceField::htmlTypes', ], 'add' => '1.8', ], 'is_enter_qty' => [ 'name' => 'is_enter_qty', 'type' => CRM_Utils_Type::T_BOOLEAN, 'title' => ts('Price Field Quantity Required?'), 'description' => ts('Enter a quantity for this field?'), 'where' => 'civicrm_price_field.is_enter_qty', 'default' => '0', 'table_name' => 'civicrm_price_field', 'entity' => 'PriceField', 'bao' => 'CRM_Price_BAO_PriceField', 'localizable' => 0, 'html' => [ 'type' => 'CheckBox', ], 'add' => '1.8', ], 'help_pre' => [ 'name' => 'help_pre', 'type' => CRM_Utils_Type::T_TEXT, 'title' => ts('Price Field Pre Text'), 'description' => ts('Description and/or help text to display before this field.'), 'rows' => 4, 'cols' => 80, 'where' => 'civicrm_price_field.help_pre', 'table_name' => 'civicrm_price_field', 'entity' => 'PriceField', 'bao' => 'CRM_Price_BAO_PriceField', 'localizable' => 1, 'html' => [ 'type' => 'TextArea', ], 'add' => '1.8', ], 'help_post' => [ 'name' => 'help_post', 'type' => CRM_Utils_Type::T_TEXT, 'title' => ts('Price Field Post Text'), 'description' => ts('Description and/or help text to display after this field.'), 'rows' => 4, 'cols' => 80, 'where' => 'civicrm_price_field.help_post', 'table_name' => 'civicrm_price_field', 'entity' => 'PriceField', 'bao' => 'CRM_Price_BAO_PriceField', 'localizable' => 1, 'html' => [ 'type' => 'TextArea', ], 'add' => '1.8', ], 'weight' => [ 'name' => 'weight', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Order'), 'description' => ts('Order in which the fields should appear'), 'where' => 'civicrm_price_field.weight', 'default' => '1', 'table_name' => 'civicrm_price_field', 'entity' => 'PriceField', 'bao' => 'CRM_Price_BAO_PriceField', 'localizable' => 0, 'html' => [ 'type' => 'Select', ], 'add' => '1.8', ], 'is_display_amounts' => [ 'name' => 'is_display_amounts', 'type' => CRM_Utils_Type::T_BOOLEAN, 'title' => ts('Price Field Show Amounts?'), 'description' => ts('Should the price be displayed next to the label for each option?'), 'where' => 'civicrm_price_field.is_display_amounts', 'default' => '1', 'table_name' => 'civicrm_price_field', 'entity' => 'PriceField', 'bao' => 'CRM_Price_BAO_PriceField', 'localizable' => 0, 'html' => [ 'type' => 'CheckBox', ], 'add' => NULL, ], 'options_per_line' => [ 'name' => 'options_per_line', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Price Field Options per Row'), 'description' => ts('number of options per line for checkbox and radio'), 'where' => 'civicrm_price_field.options_per_line', 'default' => '1', 'table_name' => 'civicrm_price_field', 'entity' => 'PriceField', 'bao' => 'CRM_Price_BAO_PriceField', 'localizable' => 0, 'html' => [ 'type' => 'Text', ], 'add' => '1.8', ], 'is_active' => [ 'name' => 'is_active', 'type' => CRM_Utils_Type::T_BOOLEAN, 'title' => ts('Price Field Is Active?'), 'description' => ts('Is this price field active'), 'where' => 'civicrm_price_field.is_active', 'default' => '1', 'table_name' => 'civicrm_price_field', 'entity' => 'PriceField', 'bao' => 'CRM_Price_BAO_PriceField', 'localizable' => 0, 'html' => [ 'type' => 'CheckBox', ], 'add' => '1.8', ], 'is_required' => [ 'name' => 'is_required', 'type' => CRM_Utils_Type::T_BOOLEAN, 'title' => ts('Price Field is Required?'), 'description' => ts('Is this price field required (value must be > 1)'), 'where' => 'civicrm_price_field.is_required', 'default' => '1', 'table_name' => 'civicrm_price_field', 'entity' => 'PriceField', 'bao' => 'CRM_Price_BAO_PriceField', 'localizable' => 0, 'html' => [ 'type' => 'CheckBox', ], 'add' => '1.8', ], 'active_on' => [ 'name' => 'active_on', 'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME, 'title' => ts('Price Field Start Date'), 'description' => ts('If non-zero, do not show this field before the date specified'), 'where' => 'civicrm_price_field.active_on', 'default' => 'NULL', 'table_name' => 'civicrm_price_field', 'entity' => 'PriceField', 'bao' => 'CRM_Price_BAO_PriceField', 'localizable' => 0, 'html' => [ 'type' => 'Select Date', 'formatType' => 'activityDateTime', ], 'add' => '1.8', ], 'expire_on' => [ 'name' => 'expire_on', 'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME, 'title' => ts('Price Field End Date'), 'description' => ts('If non-zero, do not show this field after the date specified'), 'where' => 'civicrm_price_field.expire_on', 'default' => 'NULL', 'table_name' => 'civicrm_price_field', 'entity' => 'PriceField', 'bao' => 'CRM_Price_BAO_PriceField', 'localizable' => 0, 'html' => [ 'type' => 'Select Date', 'formatType' => 'activityDateTime', ], 'add' => '1.8', ], 'javascript' => [ 'name' => 'javascript', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Price Field Javascript'), 'description' => ts('Optional scripting attributes for field'), 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, 'where' => 'civicrm_price_field.javascript', 'table_name' => 'civicrm_price_field', 'entity' => 'PriceField', 'bao' => 'CRM_Price_BAO_PriceField', 'localizable' => 0, 'html' => [ 'type' => 'Text', ], 'add' => '1.8', ], 'visibility_id' => [ 'name' => 'visibility_id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Price Field Visibility'), 'description' => ts('Implicit FK to civicrm_option_group with name = \'visibility\''), 'where' => 'civicrm_price_field.visibility_id', 'default' => '1', 'table_name' => 'civicrm_price_field', 'entity' => 'PriceField', 'bao' => 'CRM_Price_BAO_PriceField', 'localizable' => 0, 'html' => [ 'type' => 'Select', ], 'pseudoconstant' => [ 'optionGroupName' => 'visibility', 'optionEditPath' => 'civicrm/admin/options/visibility', ], 'add' => '3.2', ], ]; 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). */ public 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 */ public static function getTableName() { return CRM_Core_DAO::getLocaleTableName(self::$_tableName); } /** * Returns if this table needs to be logged * * @return bool */ public function getLog() { return self::$_log; } /** * Returns the list of fields that can be imported * * @param bool $prefix * * @return array */ public static function &import($prefix = FALSE) { $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'price_field', $prefix, []); return $r; } /** * Returns the list of fields that can be exported * * @param bool $prefix * * @return array */ public static function &export($prefix = FALSE) { $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'price_field', $prefix, []); return $r; } /** * Returns the list of indices * * @param bool $localize * * @return array */ public static function indices($localize = TRUE) { $indices = [ 'index_name' => [ 'name' => 'index_name', 'field' => [ 0 => 'name', ], 'localizable' => FALSE, 'sig' => 'civicrm_price_field::0::name', ], ]; return ($localize && !empty($indices)) ? CRM_Core_DAO_AllCoreTables::multilingualize(__CLASS__, $indices) : $indices; } }