Skip to content
Snippets Groups Projects
Commit d8fab34b authored by Kevin Paxman's avatar Kevin Paxman
Browse files

Code standards

parent d0ec1971
No related branches found
No related tags found
3 merge requests!297Feature/istwcms 5983 bulk account creation,!274Draft: ISTWCMS-5551: fixing office hours display,!260Feature/istwcms 5668 a5kulkar rename references to publications
...@@ -4,7 +4,6 @@ namespace Drupal\uw_cfg_common\Form; ...@@ -4,7 +4,6 @@ namespace Drupal\uw_cfg_common\Form;
use Drupal\Core\Form\FormBase; use Drupal\Core\Form\FormBase;
use Drupal\Core\Form\FormStateInterface; use Drupal\Core\Form\FormStateInterface;
use Drupal\uw_cfg_common\UwPermissions\UwPermissions;
/** /**
* Form class for the content access form. * Form class for the content access form.
...@@ -25,8 +24,8 @@ class UwAddUsersForm extends FormBase { ...@@ -25,8 +24,8 @@ class UwAddUsersForm extends FormBase {
// The list of users this form. // The list of users this form.
$form['users'] = [ $form['users'] = [
'#title' => 'WatIAM user ID(s) (maximum 8 characters per ID)', '#title' => t('WatIAM user ID(s) (maximum 8 characters per ID)'),
'#description' => 'Enter a single WatIAM user ID, or multiple WatIAM user IDs, one per line.<br>You can use <a href="https://idm.uwaterloo.ca/search/" target="_blank">authenticated WatIAM search</a> if you don\'t know their user ID (will open a new window).', '#description' => t('Enter a single WatIAM user ID, or multiple WatIAM user IDs, one per line.<br>You can use <a href="https://idm.uwaterloo.ca/search/" target="_blank">authenticated WatIAM search</a> if you don\'t know their user ID (will open a new window).'),
'#type' => 'textarea', '#type' => 'textarea',
'#required' => TRUE, '#required' => TRUE,
]; ];
...@@ -52,9 +51,9 @@ class UwAddUsersForm extends FormBase { ...@@ -52,9 +51,9 @@ class UwAddUsersForm extends FormBase {
// Step through each of the submitted users to create if needed/possible, // Step through each of the submitted users to create if needed/possible,
// or show a message if not. // or show a message if not.
foreach ($submitted_users as $row_name => $submitted_user) { foreach ($submitted_users as $user) {
$this->messenger()->addStatus($this->t('Normally something would happen here...')); $this->messenger()->addStatus($this->t('Normally something would happen here...'));
} }
// Set the message that the users have been created. // Set the message that the users have been created.
$this->messenger()->addStatus($this->t('Finished creating users.')); $this->messenger()->addStatus($this->t('Finished creating users.'));
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment