class RulesDataUIListEntity in Rules 7.2
UI for lists of entity-based data types.
Hierarchy
- class \RulesDataUI
- class \RulesDataUIText implements RulesDataDirectInputFormInterface
- class \RulesDataUIListText
- class \RulesDataUIListInteger
- class \RulesDataUIListEntity
- class \RulesDataUIListInteger
- class \RulesDataUIListText
- class \RulesDataUIText implements RulesDataDirectInputFormInterface
Expanded class hierarchy of RulesDataUIListEntity
1 string reference to 'RulesDataUIListEntity'
- rules_rules_core_data_info_alter in modules/
rules_core.rules.inc - Implements hook_rules_data_info_alter() on behalf of the pseudo rules_core module.
File
- ui/
ui.data.inc, line 682 - Contains data type related forms.
View source
class RulesDataUIListEntity extends RulesDataUIListInteger {
/**
* Implements RulesDataDirectInputFormInterface::inputForm().
*/
public static function inputForm($name, $info, $settings, RulesPlugin $element) {
$form = parent::inputForm($name, $info, $settings, $element);
if (empty($info['options list'])) {
$entity_info = entity_get_info(entity_property_list_extract_type($info['type']));
if (!empty($entity_info['entity keys']['name'])) {
$form[$name]['#element_validate'] = array(
'rules_ui_element_token_list_validate',
);
}
$form[$name]['#title'] = t('@entity identifiers', array(
'@entity' => $entity_info['label'],
));
$entity_label = strtolower($entity_info['label'][0]) . substr($entity_info['label'], 1);
$form[$name]['#description'] = t('Specify a comma-separated list of identifiers of @entity entities.', array(
'@entity' => $entity_label,
));
}
return $form;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
RulesDataUI:: |
public static | function | Returns the data type and parameter information for the given arguments. | |
RulesDataUI:: |
public static | function | Renders the value with a label if an options list is available. | |
RulesDataUI:: |
public static | function | Provides the selection form for a parameter. | |
RulesDataUIListEntity:: |
public static | function |
Implements RulesDataDirectInputFormInterface::inputForm(). Overrides RulesDataUIListInteger:: |
|
RulesDataUIListText:: |
public static | function |
Overrides RulesDataUI::getDefaultMode(). Overrides RulesDataUIText:: |
|
RulesDataUIListText:: |
public static | function |
Implements RulesDataDirectInputFormInterface::render(). Overrides RulesDataUIText:: |