Advertisement
Guest User

Untitled

a guest
Dec 18th, 2017
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. <?php
  2.  
  3. namespace Drupal\imd_social_media\Form;
  4.  
  5. use Drupal\Core\Form\FormBase;
  6. use Drupal\Core\Form\FormStateInterface;
  7.  
  8. class SettingsForm extends FormBase {
  9.  
  10. public function getFormId() {
  11. return 'imd_social_media_settings_form';
  12.  
  13. }
  14.  
  15. public function buildForm(array $form, FormStateInterface $form_state) {
  16.  
  17. return $form;
  18. }
  19.  
  20. public function submitForm(array &$form, FormStateInterface $form_state) {
  21.  
  22. }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement