label]` * - If an array, `options` will be a non-associative array of requested properties: * id, name, label, abbr, description, color, icon * e.g. `loadOptions: ['id', 'name', 'label']` will return an array like `[[id: 1, name: 'Meeting', label: 'Meeting'], ...]` * (note that names and labels are generally ONLY the same when the site's language is set to English). * * @var bool|array */ protected $loadOptions = FALSE; /** * Fields will be returned appropriate to the specified action (get, create, delete, etc.) * * @var string */ protected $action = 'get'; /** * Fields will be returned appropriate to the specified values (e.g. ['contact_type' => 'Individual']) * * @var array */ protected $values = []; /** * @var bool * @deprecated */ protected $includeCustom; /** * To implement getFields for your own entity: * * 1. From your entity class add a static getFields method. * 2. That method should construct and return this class. * 3. The 3rd argument passed to this constructor should be a function that returns an * array of fields for your entity's CRUD actions. * 4. For non-crud actions that need a different set of fields, you can override the * list from step 3 on a per-action basis by defining a fields() method in that action. * See for example BasicGetFieldsAction::fields() or GetActions::fields(). * * @param Result $result * @throws \Civi\API\Exception\NotImplementedException */ public function _run(Result $result) { try { $actionClass = \Civi\API\Request::create($this->getEntityName(), $this->getAction(), ['version' => 4]); } catch (NotImplementedException $e) { } if (isset($actionClass) && method_exists($actionClass, 'fields')) { $values = $actionClass->fields(); } else { $values = $this->getRecords(); } // $isInternal param is not part of function signature (to be compatible with parent class) $isInternal = func_get_args()[1] ?? FALSE; $this->formatResults($values, $isInternal); $this->queryArray($values, $result); } /** * Ensure every result contains, at minimum, the array keys as defined in $this->fields. * * Attempt to set some sensible defaults for some fields. * * Format option lists. * * In most cases it's not necessary to override this function, even if your entity is really weird. * Instead just override $this->fields and this function will respect that. * * @param array $values * @param bool $isInternal */ protected function formatResults(&$values, $isInternal) { $fieldDefaults = array_column($this->fields(), 'default_value', 'name') + array_fill_keys(array_column($this->fields(), 'name'), NULL); // Enforce field permissions if ($this->checkPermissions) { foreach ($values as $key => $field) { if (!empty($field['permission']) && !\CRM_Core_Permission::check($field['permission'])) { unset($values[$key]); } } } // Unless this is an internal getFields call, filter out @internal properties $internalProps = $isInternal ? [] : array_filter(array_column($this->fields(), '@internal', 'name')); foreach ($values as &$field) { $defaults = array_intersect_key([ 'title' => empty($field['name']) ? NULL : ucwords(str_replace('_', ' ', $field['name'])), 'entity' => $this->getEntityName(), 'options' => !empty($field['pseudoconstant']), ], $fieldDefaults); $field += $defaults + $fieldDefaults; if (array_key_exists('label', $fieldDefaults)) { $field['label'] = $field['label'] ?? $field['title'] ?? $field['name']; } if (!empty($field['options']) && is_array($field['options']) && empty($field['suffixes']) && array_key_exists('suffixes', $field)) { $this->setFieldSuffixes($field); } if (isset($defaults['options'])) { $field['options'] = $this->formatOptionList($field['options']); } $field = array_diff_key($field, $internalProps); } } /** * Transforms option list into the format specified in $this->loadOptions * * @param $options * @return array|bool */ private function formatOptionList($options) { if (!$this->loadOptions || !is_array($options)) { return (bool) $options; } if (!$options) { return $options; } $formatted = []; $first = reset($options); // Flat array requested if ($this->loadOptions === TRUE) { // Convert non-associative to flat array if (is_array($first) && isset($first['id'])) { foreach ($options as $option) { $formatted[$option['id']] = $option['label'] ?? $option['name'] ?? $option['id']; } return $formatted; } return $options; } // Non-associative array of multiple properties requested foreach ($options as $id => $option) { // Transform a flat list if (!is_array($option)) { $option = [ 'id' => $id, 'name' => $id, 'label' => $option, ]; } $formatted[] = array_intersect_key($option, array_flip($this->loadOptions)); } return $formatted; } /** * Set supported field suffixes based on available option keys * @param array $field */ private function setFieldSuffixes(array &$field) { // These suffixes are always supported if a field has options $field['suffixes'] = ['name', 'label']; $firstOption = reset($field['options']); // If first option is an array, merge in those keys as available suffixes if (is_array($firstOption)) { // Remove 'id' because there is no practical reason to use it as a field suffix $otherKeys = array_diff(array_keys($firstOption), ['id', 'name', 'label']); $field['suffixes'] = array_merge($field['suffixes'], $otherKeys); } } /** * @return string */ public function getAction() { // For actions that build on top of other actions, return fields for the simpler action $sub = [ 'save' => 'create', 'replace' => 'create', ]; return $sub[$this->action] ?? $this->action; } /** * Add an item to the values array * @param string $fieldName * @param mixed $value * @return $this */ public function addValue(string $fieldName, $value) { $this->values[$fieldName] = $value; return $this; } /** * Helper function to retrieve options from an option group (for non-DAO entities). * * @param string $optionGroupName */ public function pseudoconstantOptions(string $optionGroupName) { if ($this->getLoadOptions()) { $options = \CRM_Core_OptionValue::getValues(['name' => $optionGroupName]); foreach ($options as &$option) { $option['id'] = $option['value']; } } else { $options = TRUE; } return $options; } public function fields() { return [ [ 'name' => 'name', 'data_type' => 'String', 'description' => ts('Unique field identifier'), ], [ 'name' => 'title', 'data_type' => 'String', 'description' => ts('Technical name of field, shown in API and exports'), ], [ 'name' => 'label', 'data_type' => 'String', 'description' => ts('User-facing label, shown on most forms and displays'), ], [ 'name' => 'description', 'data_type' => 'String', 'description' => ts('Explanation of the purpose of the field'), ], [ 'name' => 'type', 'data_type' => 'String', 'default_value' => 'Field', 'options' => [ 'Field' => ts('Primary Field'), 'Custom' => ts('Custom Field'), 'Filter' => ts('Search Filter'), 'Extra' => ts('Extra API Field'), ], ], [ 'name' => 'default_value', 'data_type' => 'String', ], [ 'name' => 'required', 'description' => 'Is this field required when creating a new entity', 'data_type' => 'Boolean', 'default_value' => FALSE, ], [ 'name' => 'nullable', 'description' => 'Whether a null value is allowed in this field', 'data_type' => 'Boolean', 'default_value' => TRUE, ], [ 'name' => 'required_if', 'data_type' => 'String', ], [ 'name' => 'options', 'data_type' => 'Array', 'default_value' => FALSE, ], [ 'name' => 'suffixes', 'data_type' => 'Array', 'default_value' => NULL, 'options' => ['name', 'label', 'description', 'abbr', 'color', 'icon'], 'description' => 'Available option transformations, e.g. :name, :label', ], [ 'name' => 'operators', 'data_type' => 'Array', 'description' => 'If set, limits the operators that can be used on this field for "get" actions.', ], [ 'name' => 'data_type', 'default_value' => 'String', 'options' => [ 'Array' => ts('Array'), 'Boolean' => ts('Boolean'), 'Date' => ts('Date'), 'Float' => ts('Float'), 'Integer' => ts('Integer'), 'String' => ts('String'), 'Text' => ts('Text'), 'Timestamp' => ts('Timestamp'), ], ], [ 'name' => 'input_type', 'data_type' => 'String', 'options' => [ 'ChainSelect' => ts('Chain-Select'), 'CheckBox' => ts('Checkboxes'), 'Date' => ts('Date Picker'), 'EntityRef' => ts('Autocomplete Entity'), 'File' => ts('File'), 'Number' => ts('Number'), 'Radio' => ts('Radio Buttons'), 'Select' => ts('Select'), 'Text' => ts('Text'), ], ], [ 'name' => 'input_attrs', 'data_type' => 'Array', ], [ 'name' => 'fk_entity', 'data_type' => 'String', ], [ 'name' => 'serialize', 'data_type' => 'Integer', ], [ 'name' => 'entity', 'data_type' => 'String', ], [ 'name' => 'readonly', 'data_type' => 'Boolean', 'description' => 'True for auto-increment, calculated, or otherwise non-editable fields.', 'default_value' => FALSE, ], [ 'name' => 'output_formatters', 'data_type' => 'Array', '@internal' => TRUE, ], ]; } }