social_lms_integrator-1.0.0-beta4/modules/social_lms_integrator_enrollment_method/src/Form/IterationEnrollmentMethodAddForm.php
modules/social_lms_integrator_enrollment_method/src/Form/IterationEnrollmentMethodAddForm.php
<?php
namespace Drupal\social_lms_integrator_enrollment_method\Form;
use Drupal\Core\Form\FormStateInterface;
/**
* Class IterationEnrollmentMethodAddForm.
*
* Provides the add form for our IterationEnrollmentMethod entity.
*
* @ingroup social_lms_integrator_enrollment_method
*/
class IterationEnrollmentMethodAddForm extends IterationEnrollmentMethodFormBase {
protected function actions(array $form, FormStateInterface $form_state) {
$actions = parent::actions($form, $form_state);
$actions['submit']['#value'] = $this->t('Create Iteration Enrollment Method');
return $actions;
}
}
