class EmbedCode in Lightning Media 8
Same name and namespace in other branches
- 8.4 src/Plugin/EntityBrowser/Widget/EmbedCode.php \Drupal\lightning_media\Plugin\EntityBrowser\Widget\EmbedCode
- 8.2 src/Plugin/EntityBrowser/Widget/EmbedCode.php \Drupal\lightning_media\Plugin\EntityBrowser\Widget\EmbedCode
- 8.3 src/Plugin/EntityBrowser/Widget/EmbedCode.php \Drupal\lightning_media\Plugin\EntityBrowser\Widget\EmbedCode
An Entity Browser widget for creating media entities from embed codes.
Plugin annotation
@EntityBrowserWidget(
id = "embed_code",
label = @Translation("Embed Code"),
description = @Translation("Allows creation of media entities from embed codes."),
)
Hierarchy
- class \Drupal\lightning_media\Plugin\EntityBrowser\Widget\EntityFormProxy extends \Drupal\entity_browser\WidgetBase
- class \Drupal\lightning_media\Plugin\EntityBrowser\Widget\EmbedCode
Expanded class hierarchy of EmbedCode
File
- src/
Plugin/ EntityBrowser/ Widget/ EmbedCode.php, line 16
Namespace
Drupal\lightning_media\Plugin\EntityBrowser\WidgetView source
class EmbedCode extends EntityFormProxy {
/**
* {@inheritdoc}
*/
public function getForm(array &$original_form, FormStateInterface $form_state, array $additional_widget_parameters) {
$form = parent::getForm($original_form, $form_state, $additional_widget_parameters);
$form['input'] = [
'#type' => 'textarea',
'#placeholder' => $this
->t('Enter a URL...'),
'#attributes' => [
'class' => [
'keyup-change',
],
],
'#ajax' => [
'event' => 'change',
'wrapper' => 'entity',
'method' => 'html',
'callback' => [
static::class,
'ajax',
],
],
];
return $form;
}
/**
* {@inheritdoc}
*/
public function validate(array &$form, FormStateInterface $form_state) {
$value = trim($this
->getInputValue($form_state));
if ($value) {
parent::validate($form, $form_state);
}
else {
$form_state
->setError($form['widget'], $this
->t('You must enter a URL or embed code.'));
}
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
EmbedCode:: |
public | function |
Overrides EntityFormProxy:: |
|
EmbedCode:: |
public | function |
Overrides EntityFormProxy:: |
|
EntityFormProxy:: |
protected | property | The media helper service. | |
EntityFormProxy:: |
public static | function | AJAX callback. Returns the rebuilt inline entity form. | 1 |
EntityFormProxy:: |
public static | function | ||
EntityFormProxy:: |
public | function | 1 | |
EntityFormProxy:: |
protected | function | Returns the bundles that this widget may use. | |
EntityFormProxy:: |
protected | function | Returns the current input value, if any. | 1 |
EntityFormProxy:: |
protected | function | 1 | |
EntityFormProxy:: |
public | function | 1 | |
EntityFormProxy:: |
public | function | EntityFormProxy constructor. |