Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make System Email Addresses dashboard page labels more descriptive #6664

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
22 changes: 11 additions & 11 deletions concrete/single_pages/dashboard/system/mail/addresses.php
Expand Up @@ -8,71 +8,71 @@
<fieldset>
<legend><?php echo t('Default'); ?></legend>
<div class="form-group">
<?php echo $form->label('defaultName', t('Name')); ?>
<?php echo $form->label('defaultName', t('Email From Name')); ?>
<?php echo $form->text('defaultName', $defaultName); ?>
</div>
<div class="form-group">
<?php echo $form->label('defaultAddress', t('Address')); ?>
<?php echo $form->label('defaultAddress', t('Email Address')); ?>
<?php echo $form->email('defaultAddress', $defaultAddress); ?>
</div>
</fieldset>

<fieldset>
<legend><?php echo t('Forgot Password'); ?></legend>
<div class="form-group">
<?php echo $form->label('forgotPasswordName', t('Name')); ?>
<?php echo $form->label('forgotPasswordName', t('Email From Name')); ?>
<?php echo $form->text('forgotPasswordName', $forgotPasswordName); ?>
</div>
<div class="form-group">
<?php echo $form->label('forgotPasswordAddress', t('Address')); ?>
<?php echo $form->label('forgotPasswordAddress', t('Email Address')); ?>
<?php echo $form->email('forgotPasswordAddress', $forgotPasswordAddress); ?>
</div>
</fieldset>

<fieldset>
<legend><?php echo t('Form Block'); ?></legend>
<div class="form-group">
<?php echo $form->label('formBlockAddress', t('Address')); ?>
<?php echo $form->label('formBlockAddress', t('Email Address')); ?>
<?php echo $form->email('formBlockAddress', $formBlockAddress); ?>
</div>
</fieldset>

<fieldset>
<legend><?php echo t('Spam Notification'); ?></legend>
<div class="form-group">
<?php echo $form->label('spamNotificationAddress', t('Address')); ?>
<?php echo $form->label('spamNotificationAddress', t('Email Address')); ?>
<?php echo $form->email('spamNotificationAddress', $spamNotificationAddress); ?>
</div>
</fieldset>

<fieldset>
<legend><?php echo t('Website Registration Notification'); ?></legend>
<div class="form-group">
<?php echo $form->label('registerNotificationAddress', t('Address')); ?>
<?php echo $form->label('registerNotificationAddress', t('Email Address')); ?>
<?php echo $form->email('registerNotificationAddress', $registerNotificationAddress); ?>
</div>
</fieldset>

<fieldset>
<legend><?php echo t('Validate Registration'); ?></legend>
<div class="form-group">
<?php echo $form->label('validateRegistrationName', t('Name')); ?>
<?php echo $form->label('validateRegistrationName', t('Email From Name')); ?>
<?php echo $form->text('validateRegistrationName', $validateRegistrationName); ?>
</div>
<div class="form-group">
<?php echo $form->label('validateRegistrationAddress', t('Address')); ?>
<?php echo $form->label('validateRegistrationAddress', t('Email Address')); ?>
<?php echo $form->email('validateRegistrationAddress', $validateRegistrationAddress); ?>
</div>
</fieldset>

<fieldset>
<legend><?php echo t('Workflow Notification'); ?></legend>
<div class="form-group">
<?php echo $form->label('workflowNotificationName', t('Name')); ?>
<?php echo $form->label('workflowNotificationName', t('Email From Name')); ?>
<?php echo $form->text('workflowNotificationName', $workflowNotificationName); ?>
</div>
<div class="form-group">
<?php echo $form->label('workflowNotificationAddress', t('Address')); ?>
<?php echo $form->label('workflowNotificationAddress', t('Email Address')); ?>
<?php echo $form->email('workflowNotificationAddress', $workflowNotificationAddress); ?>
</div>
</fieldset>
Expand Down