Added missing modules, including some as submodules.
[yaffs-website] / web / modules / contrib / linkit / src / Form / Profile / AddForm.php
1 <?php
2
3 /**
4  * @file
5  * Contains \Drupal\linkit\Form\Profile\AddForm.
6  */
7
8 namespace Drupal\linkit\Form\Profile;
9
10 use Drupal\Core\Form\FormStateInterface;
11
12 /**
13  * Controller for profile addition forms.
14  *
15  * @see \Drupal\linkit\Profile\FormBase
16  */
17 class AddForm extends FormBase {
18
19   /**
20    * {@inheritdoc}
21    */
22   public function actions(array $form, FormStateInterface $form_state) {
23     $actions = parent::actions($form, $form_state);
24     $actions['submit']['#value'] = $this->t('Save and manage matchers');
25     return $actions;
26   }
27
28 }