Update Composer, update everything

This commit is contained in:
Oliver Davies 2018-11-23 12:29:20 +00:00
parent ea3e94409f
commit dda5c284b6
19527 changed files with 1135420 additions and 351004 deletions

View file

@ -0,0 +1,68 @@
<?php
namespace Drupal\{{ machine_name }}\Plugin\EntityReferenceSelection;
{% sort %}
{% if configurable %}
use Drupal\Core\Form\FormStateInterface;
{% endif %}
use {{ base_class_full }};
{% endsort %}
/**
* Plugin description.
*
* @EntityReferenceSelection(
* id = "{{ plugin_id }}",
* label = @Translation("{{ plugin_label }}"),
* group = "{{ plugin_id }}",
* entity_types = {"{{ entity_type }}"},
* weight = 0
* )
*/
class {{ class }} extends {{ base_class }} {
{% if configurable %}
/**
* {@inheritdoc}
*/
public function defaultConfiguration() {
$default_configuration = [
'foo' => 'bar',
];
return $default_configuration + parent::defaultConfiguration();
}
/**
* {@inheritdoc}
*/
public function buildConfigurationForm(array $form, FormStateInterface $form_state) {
$form = parent::buildConfigurationForm($form, $form_state);
$form['foo'] = [
'#type' => 'textfield',
'#title' => $this->t('Foo'),
'#default_value' => $this->configuration['foo'],
];
return $form;
}
{% endif %}
/**
* {@inheritdoc}
*/
protected function buildEntityQuery($match = NULL, $match_operator = 'CONTAINS') {
$query = parent::buildEntityQuery($match, $match_operator);
// @DCG
// Here you can apply addition conditions, sorting, etc to the query.
// Also see self::entityQueryAlter().
$query->condition('field_example', 123);
return $query;
}
}