1 | <?php |
||
14 | abstract class EmbedTypeBase extends PluginBase implements EmbedTypeInterface { |
||
15 | |||
16 | /** |
||
17 | * {@inheritdoc} |
||
18 | */ |
||
19 | public function __construct(array $configuration, $plugin_id, $plugin_definition) { |
||
23 | |||
24 | /** |
||
25 | * {@inheritdoc} |
||
26 | */ |
||
27 | public function calculateDependencies() { |
||
30 | |||
31 | /** |
||
32 | * {@inheritdoc} |
||
33 | */ |
||
34 | public function defaultConfiguration() { |
||
37 | |||
38 | /** |
||
39 | * {@inheritdoc} |
||
40 | */ |
||
41 | public function getConfiguration() { |
||
44 | |||
45 | /** |
||
46 | * {@inheritdoc} |
||
47 | */ |
||
48 | public function getConfigurationValue($name, $default = NULL) { |
||
57 | |||
58 | /** |
||
59 | * {@inheritdoc} |
||
60 | */ |
||
61 | public function setConfiguration(array $configuration) { |
||
64 | |||
65 | /** |
||
66 | * {@inheritdoc} |
||
67 | */ |
||
68 | public function setConfigurationValue($name, $value) { |
||
71 | |||
72 | /** |
||
73 | * {@inheritdoc} |
||
74 | */ |
||
75 | public function buildConfigurationForm(array $form, FormStateInterface $form_state) { |
||
78 | |||
79 | /** |
||
80 | * {@inheritdoc} |
||
81 | */ |
||
82 | public function validateConfigurationForm(array &$form, FormStateInterface $form_state) { |
||
85 | |||
86 | /** |
||
87 | * {@inheritdoc} |
||
88 | */ |
||
89 | public function submitConfigurationForm(array &$form, FormStateInterface $form_state) { |
||
99 | |||
100 | } |
||
101 |