SimpleAdsTypeBase.php in SimpleAds 8
File
src/SimpleAdsTypeBase.php
View source
<?php
namespace Drupal\simpleads;
use Drupal\Core\StringTranslation\StringTranslationTrait;
use Drupal\Component\Plugin\PluginBase;
use Drupal\Core\Form\FormStateInterface;
class SimpleAdsTypeBase extends PluginBase implements SimpleAdsTypeInterface {
use StringTranslationTrait;
public function getName() {
return $this->pluginDefinition['name'];
}
public function buildForm(array $form, FormStateInterface $form_state, $type = NULL, $id = NULL) {
}
public function createFormSubmit($options, FormStateInterface $form_state, $type = NULL) {
return $options;
}
public function updateFormSubmit($options, FormStateInterface $form_state, $type = NULL, $id = NULL) {
return $options;
}
public function deleteFormSubmit($options, FormStateInterface $form_state, $type = NULL, $id = NULL) {
return $options;
}
public function theme() {
}
public function render() {
}
}