class YamlFormLocation in YAML Form 8
Same name in this branch
- 8 src/Element/YamlFormLocation.php \Drupal\yamlform\Element\YamlFormLocation
- 8 src/Plugin/YamlFormElement/YamlFormLocation.php \Drupal\yamlform\Plugin\YamlFormElement\YamlFormLocation
Provides an 'location' element.
Plugin annotation
@YamlFormElement(
id = "yamlform_location",
label = @Translation("Location"),
category = @Translation("Composite elements"),
multiline = TRUE,
composite = TRUE,
states_wrapper = TRUE,
)
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\yamlform\YamlFormElementBase implements YamlFormElementInterface uses StringTranslationTrait
- class \Drupal\yamlform\Plugin\YamlFormElement\YamlFormCompositeBase
- class \Drupal\yamlform\Plugin\YamlFormElement\YamlFormLocation
- class \Drupal\yamlform\Plugin\YamlFormElement\YamlFormCompositeBase
- class \Drupal\yamlform\YamlFormElementBase implements YamlFormElementInterface uses StringTranslationTrait
Expanded class hierarchy of YamlFormLocation
File
- src/
Plugin/ YamlFormElement/ YamlFormLocation.php, line 24
Namespace
Drupal\yamlform\Plugin\YamlFormElementView source
class YamlFormLocation extends YamlFormCompositeBase {
/**
* {@inheritdoc}
*/
protected function getCompositeElements() {
return YamlFormLocationElement::getCompositeElements();
}
/**
* {@inheritdoc}
*/
protected function getInitializedCompositeElement(array &$element) {
$form_state = new FormState();
$form_completed = [];
return YamlFormLocationElement::processYamlFormComposite($element, $form_state, $form_completed);
}
/**
* {@inheritdoc}
*/
public function getDefaultProperties() {
$properties = [
'title' => '',
// General settings.
'description' => '',
'default_value' => [],
// For display.
'title_display' => '',
'description_display' => '',
// Form validation.
'required' => FALSE,
// Location settings.
'geolocation' => FALSE,
'hidden' => FALSE,
'api_key' => '',
] + $this
->getDefaultBaseProperties();
$composite_elements = $this
->getCompositeElements();
foreach ($composite_elements as $composite_key => $composite_element) {
$properties[$composite_key . '__title'] = (string) $composite_element['#title'];
if ($composite_key != 'value') {
$properties[$composite_key . '__access'] = FALSE;
}
}
return $properties;
}
/**
* {@inheritdoc}
*/
public function prepare(array &$element, YamlFormSubmissionInterface $yamlform_submission) {
parent::prepare($element, $yamlform_submission);
// Hide all composite elements by default.
$composite_elements = $this
->getCompositeElements();
foreach ($composite_elements as $composite_key => $composite_element) {
if ($composite_key != 'value' && !isset($element['#' . $composite_key . '__access'])) {
$element['#' . $composite_key . '__access'] = FALSE;
}
}
}
/**
* {@inheritdoc}
*/
public function form(array $form, FormStateInterface $form_state) {
$form = parent::form($form, $form_state);
// Reverted #required label.
$form['validation']['required']['#description'] = $this
->t('Check this option if the user must enter a value.');
$form['composite']['geolocation'] = [
'#type' => 'checkbox',
'#title' => $this
->t("Use the browser's Geolocation as the default value."),
'#description' => $this
->t('The <a href="http://www.w3schools.com/html/html5_geolocation.asp">HTML Geolocation API</a> is used to get the geographical position of a user. Since this can compromise privacy, the position is not available unless the user approves it.'),
];
$form['composite']['hidden'] = [
'#type' => 'checkbox',
'#title' => $this
->t("Hide the location element and collect the browser's Geolocation in the background."),
'#states' => [
'visible' => [
':input[name="properties[geolocation]"]' => [
'checked' => TRUE,
],
],
],
];
$form['composite']['api_key'] = [
'#type' => 'textfield',
'#title' => $this
->t('Google Maps API key'),
'#description' => $this
->t('Google requires users to use a valid API key. Using the <a href="https://console.developers.google.com/apis">Google API Manager</a>, you can enable the <em>Google Maps JavaScript API</em>. That will create (or reuse) a <em>Browser key</em> which you can paste here.'),
];
$default_api_key = \Drupal::config('yamlform.settings')
->get('elements.default_google_maps_api_key');
if ($default_api_key) {
$form['composite']['api_key']['#description'] .= '<br/>' . $this
->t('Defaults to: %value', [
'%value' => $default_api_key,
]);
}
else {
$form['composite']['api_key']['#required'] = TRUE;
if (\Drupal::currentUser()
->hasPermission('administer yamlform')) {
$t_args = [
':href' => UrlGenerator::fromRoute('yamlform.settings')
->toString(),
];
$form['composite']['api_key']['#description'] .= '<br/>' . $this
->t('You can either enter an element specific API key here or set the <a href=":href">default site-wide API key</a>.', $t_args);
}
}
return $form;
}
/**
* {@inheritdoc}
*/
protected function buildCompositeElementsTable() {
$header = [
$this
->t('Key'),
$this
->t('Title'),
$this
->t('Visible'),
];
$rows = [];
$composite_elements = $this
->getCompositeElements();
foreach ($composite_elements as $composite_key => $composite_element) {
$title = isset($composite_element['#title']) ? $composite_element['#title'] : $composite_key;
$type = isset($composite_element['#type']) ? $composite_element['#type'] : NULL;
$t_args = [
'@title' => $title,
];
$attributes = [
'style' => 'width: 100%; margin-bottom: 5px',
];
$row = [];
// Key.
$row[$composite_key . '__key'] = [
'#markup' => $composite_key,
'#access' => TRUE,
];
// Title, placeholder, and description.
if ($type) {
$row['title_and_description'] = [
'data' => [
$composite_key . '__title' => [
'#type' => 'textfield',
'#title' => $this
->t('@title title', $t_args),
'#title_display' => 'invisible',
'#placeholder' => $this
->t('Enter title...'),
'#attributes' => $attributes,
],
],
];
}
else {
$row['title_and_description'] = [
'data' => [
'',
],
];
}
// Access.
$row[$composite_key . '__access'] = [
'#type' => 'checkbox',
'#return_value' => TRUE,
];
$rows[$composite_key] = $row;
}
return [
'#type' => 'table',
'#header' => $header,
] + $rows;
}
/**
* {@inheritdoc}
*/
public function getTestValue(array $element, YamlFormInterface $yamlform) {
// Use test values include in settings.
return '';
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
PluginBase:: |
protected | property | Configuration information passed into the plugin. | 1 |
PluginBase:: |
protected | property | The plugin implementation definition. | 1 |
PluginBase:: |
protected | property | The plugin_id. | |
PluginBase:: |
constant | A string which is used to separate base plugin IDs from the derivative ID. | ||
PluginBase:: |
public | function |
Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the definition of the plugin implementation. Overrides PluginInspectionInterface:: |
3 |
PluginBase:: |
public | function |
Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface:: |
|
PluginBase:: |
public | function | Determines if the plugin is configurable. | |
StringTranslationTrait:: |
protected | property | The string translation service. | 1 |
StringTranslationTrait:: |
protected | function | Formats a string containing a count of items. | |
StringTranslationTrait:: |
protected | function | Returns the number of plurals supported by a given language. | |
StringTranslationTrait:: |
protected | function | Gets the string translation service. | |
StringTranslationTrait:: |
public | function | Sets the string translation service to use. | 2 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. | |
YamlFormCompositeBase:: |
public | function |
Build an element's export header. Overrides YamlFormElementBase:: |
|
YamlFormCompositeBase:: |
public | function |
Get an element's export options form. Overrides YamlFormElementBase:: |
|
YamlFormCompositeBase:: |
public | function |
Build an element's export row. Overrides YamlFormElementBase:: |
|
YamlFormCompositeBase:: |
public | function |
Format an element's value as HTML. Overrides YamlFormElementBase:: |
|
YamlFormCompositeBase:: |
protected | function | Format composite element value into lines of text. | 2 |
YamlFormCompositeBase:: |
public | function |
Format an element's table column value. Overrides YamlFormElementBase:: |
|
YamlFormCompositeBase:: |
public | function |
Format an element's value as plain text. Overrides YamlFormElementBase:: |
|
YamlFormCompositeBase:: |
protected | function | Get form option keys for composite element based on the composite element's key. | |
YamlFormCompositeBase:: |
public | function |
Get an associative array of element properties from configuration form. Overrides YamlFormElementBase:: |
|
YamlFormCompositeBase:: |
public | function |
Get an element's selectors as options. Overrides YamlFormElementBase:: |
|
YamlFormCompositeBase:: |
public | function |
Get an element's default export options. Overrides YamlFormElementBase:: |
|
YamlFormCompositeBase:: |
public | function |
Get an element's available formats. Overrides YamlFormElementBase:: |
|
YamlFormCompositeBase:: |
public | function |
Get related element types. Overrides YamlFormElementBase:: |
|
YamlFormCompositeBase:: |
public | function |
Get element's table column(s) settings. Overrides YamlFormElementBase:: |
|
YamlFormCompositeBase:: |
public | function |
Checks if element value could contain multiple lines. Overrides YamlFormElementBase:: |
|
YamlFormElementBase:: |
protected | property | The configuration factory. | |
YamlFormElementBase:: |
protected | property | The current user. | |
YamlFormElementBase:: |
protected | property | A element info manager. | |
YamlFormElementBase:: |
protected | property | The form element manager. | |
YamlFormElementBase:: |
protected | property | The entity type manager. | |
YamlFormElementBase:: |
protected | property | A logger instance. | |
YamlFormElementBase:: |
protected | property | The token manager. | |
YamlFormElementBase:: |
protected | function | Build an element as text or HTML. | 2 |
YamlFormElementBase:: |
public | function |
Form constructor. Overrides PluginFormInterface:: |
1 |
YamlFormElementBase:: |
public | function |
Build an element as HTML element. Overrides YamlFormElementInterface:: |
1 |
YamlFormElementBase:: |
public | function |
Build an element as text element. Overrides YamlFormElementInterface:: |
1 |
YamlFormElementBase:: |
public | function |
Check element access (rules). Overrides YamlFormElementInterface:: |
|
YamlFormElementBase:: |
public static | function |
Creates an instance of the plugin. Overrides ContainerFactoryPluginInterface:: |
|
YamlFormElementBase:: |
public | function |
Display element disabled warning. Overrides YamlFormElementInterface:: |
1 |
YamlFormElementBase:: |
public | function |
Get an element's admin label (#admin_title, #title or #yamlform_key). Overrides YamlFormElementInterface:: |
|
YamlFormElementBase:: |
protected | function | Get configuration property value. | 1 |
YamlFormElementBase:: |
protected | function | Get default base properties used by all elements. | |
YamlFormElementBase:: |
public | function |
Get an element's default format name. Overrides YamlFormElementInterface:: |
17 |
YamlFormElementBase:: |
protected | function | Get an element's (sub)inputs selectors as options. | 7 |
YamlFormElementBase:: |
public | function |
Get an element's supported states as options. Overrides YamlFormElementInterface:: |
|
YamlFormElementBase:: |
public | function |
Get element's format name by looking for '#format' property, global settings, and finally default settings. Overrides YamlFormElementInterface:: |
1 |
YamlFormElementBase:: |
public | function |
Retrieves the default properties for the defined element type. Overrides YamlFormElementInterface:: |
|
YamlFormElementBase:: |
public | function |
Get an element's key/name. Overrides YamlFormElementInterface:: |
|
YamlFormElementBase:: |
public | function |
Get an element's label (#title or #yamlform_key). Overrides YamlFormElementInterface:: |
|
YamlFormElementBase:: |
public | function |
Get link to element's API documentation. Overrides YamlFormElementInterface:: |
|
YamlFormElementBase:: |
public | function |
Get the URL for the element's API documentation. Overrides YamlFormElementInterface:: |
|
YamlFormElementBase:: |
public | function |
Gets the label of the plugin instance. Overrides YamlFormElementInterface:: |
|
YamlFormElementBase:: |
public | function |
Get translatable properties. Overrides YamlFormElementInterface:: |
7 |
YamlFormElementBase:: |
public | function |
Gets the type name (aka id) of the plugin instance with the 'yamlform_' prefix. Overrides YamlFormElementInterface:: |
|
YamlFormElementBase:: |
public | function |
Checks if element value has multiple values. Overrides YamlFormElementInterface:: |
3 |
YamlFormElementBase:: |
public | function |
Determine if an element supports a specified property. Overrides YamlFormElementInterface:: |
|
YamlFormElementBase:: |
public | function |
Checks if the element has a wrapper. Overrides YamlFormElementInterface:: |
|
YamlFormElementBase:: |
public | function |
Initialize an element to be displayed, rendered, or exported. Overrides YamlFormElementInterface:: |
1 |
YamlFormElementBase:: |
public | function |
Checks if element is a composite element. Overrides YamlFormElementInterface:: |
|
YamlFormElementBase:: |
public | function |
Checks if element is a container that can contain elements. Overrides YamlFormElementInterface:: |
3 |
YamlFormElementBase:: |
public | function |
Checks if element is disabled. Overrides YamlFormElementInterface:: |
|
YamlFormElementBase:: |
public | function |
Checks if element is enabled. Overrides YamlFormElementInterface:: |
1 |
YamlFormElementBase:: |
public | function |
Checks if element is hidden. Overrides YamlFormElementInterface:: |
|
YamlFormElementBase:: |
public | function |
Checks if the element carries a value. Overrides YamlFormElementInterface:: |
5 |
YamlFormElementBase:: |
public | function |
Checks if element is a root element. Overrides YamlFormElementInterface:: |
1 |
YamlFormElementBase:: |
public | function |
Acts on a form submission element after it is created. Overrides YamlFormElementInterface:: |
1 |
YamlFormElementBase:: |
public | function |
Delete any additional value associated with an element. Overrides YamlFormElementInterface:: |
2 |
YamlFormElementBase:: |
public | function |
Acts on loaded form submission. Overrides YamlFormElementInterface:: |
1 |
YamlFormElementBase:: |
public | function |
Acts on a saved form submission element before the insert or update hook is invoked. Overrides YamlFormElementInterface:: |
2 |
YamlFormElementBase:: |
public | function |
Changes the values of an entity before it is created. Overrides YamlFormElementInterface:: |
1 |
YamlFormElementBase:: |
public | function | 1 | |
YamlFormElementBase:: |
protected | function | Prefix an element's export header. | |
YamlFormElementBase:: |
protected | function | Set an elements Flexbox and #states wrapper. | 1 |
YamlFormElementBase:: |
public | function |
Acts on a form submission element before the presave hook is invoked. Overrides YamlFormElementInterface:: |
2 |
YamlFormElementBase:: |
protected | function | Set an element's configuration form element default value. | 2 |
YamlFormElementBase:: |
protected | function | Set configuration form default values recursively. | |
YamlFormElementBase:: |
public | function |
Set an element's default value using saved data. Overrides YamlFormElementInterface:: |
8 |
YamlFormElementBase:: |
public | function |
Form submission handler. Overrides PluginFormInterface:: |
|
YamlFormElementBase:: |
public | function |
Form validation handler. Overrides PluginFormInterface:: |
3 |
YamlFormElementBase:: |
public static | function | Form API callback. Validate #unique value. | |
YamlFormElementBase:: |
public | function |
Constructs a Drupal\Component\Plugin\PluginBase object. Overrides PluginBase:: |
|
YamlFormLocation:: |
protected | function |
Build the composite elements settings table. Overrides YamlFormCompositeBase:: |
|
YamlFormLocation:: |
public | function |
Gets the actual configuration form array to be built. Overrides YamlFormCompositeBase:: |
|
YamlFormLocation:: |
protected | function |
Get composite elements. Overrides YamlFormCompositeBase:: |
|
YamlFormLocation:: |
public | function |
Only a few elements don't inherit these default properties. Overrides YamlFormCompositeBase:: |
|
YamlFormLocation:: |
protected | function |
Get initialized composite element. Overrides YamlFormCompositeBase:: |
|
YamlFormLocation:: |
public | function |
Get test value for an element. Overrides YamlFormCompositeBase:: |
|
YamlFormLocation:: |
public | function |
Prepare an element to be rendered within a form. Overrides YamlFormCompositeBase:: |