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