layout change
This commit is contained in:
parent
5969c5a544
commit
c2b0745ce6
|
@ -138,19 +138,20 @@ class nisMailAlias extends baseModule {
|
||||||
$return[] = array(
|
$return[] = array(
|
||||||
array('kind' => 'text', 'text' => _('Alias name') . '*'),
|
array('kind' => 'text', 'text' => _('Alias name') . '*'),
|
||||||
array('kind' => 'input', 'name' => 'cn', 'type' => 'text', 'size' => '20', 'value' => $this->attributes['cn'][0]),
|
array('kind' => 'input', 'name' => 'cn', 'type' => 'text', 'size' => '20', 'value' => $this->attributes['cn'][0]),
|
||||||
|
array('kind' => 'text', 'text' => ' '),
|
||||||
array('kind' => 'help', 'value' => 'alias'));
|
array('kind' => 'help', 'value' => 'alias'));
|
||||||
// list current recipients
|
// list current recipients
|
||||||
for ($i = 0; $i < sizeof($this->attributes['rfc822MailMember']); $i++) {
|
for ($i = 0; $i < sizeof($this->attributes['rfc822MailMember']); $i++) {
|
||||||
$return[] = array(
|
$return[] = array(
|
||||||
array('kind' => 'text', 'text' => _('Recipient')),
|
array('kind' => 'text', 'text' => _('Recipient')),
|
||||||
array('kind' => 'input', 'name' => 'rfc822MailMember' . $i, 'type' => 'text', 'size' => '17', 'value' => $this->attributes['rfc822MailMember'][$i]),
|
array('kind' => 'input', 'name' => 'rfc822MailMember' . $i, 'type' => 'text', 'size' => '20', 'value' => $this->attributes['rfc822MailMember'][$i]),
|
||||||
array('kind' => 'input', 'type' => 'submit', 'name' => 'delRec' . $i, 'title' => _("Remove"), 'value' => ' ', 'image' => 'del.png'),
|
array('kind' => 'input', 'type' => 'submit', 'name' => 'delRec' . $i, 'title' => _("Remove"), 'value' => ' ', 'image' => 'del.png'),
|
||||||
array('kind' => 'help', 'value' => 'recipient'));
|
array('kind' => 'help', 'value' => 'recipient'));
|
||||||
}
|
}
|
||||||
// input box for new recipient
|
// input box for new recipient
|
||||||
$return[] = array(
|
$return[] = array(
|
||||||
array('kind' => 'text', 'text' => _('New recipient')),
|
array('kind' => 'text', 'text' => _('New recipient')),
|
||||||
array('kind' => 'input', 'name' => 'rfc822MailMember', 'type' => 'text', 'size' => '17', 'value' => ''),
|
array('kind' => 'input', 'name' => 'rfc822MailMember', 'type' => 'text', 'size' => '20', 'value' => ''),
|
||||||
array('kind' => 'input', 'type' => 'submit', 'name' => 'addRec', 'title' => _("Add"), 'value' => ' ', 'image' => 'add.png'),
|
array('kind' => 'input', 'type' => 'submit', 'name' => 'addRec', 'title' => _("Add"), 'value' => ' ', 'image' => 'add.png'),
|
||||||
array('kind' => 'help', 'value' => 'recipient'),
|
array('kind' => 'help', 'value' => 'recipient'),
|
||||||
array('kind' => 'input', 'type' => 'hidden', 'value' => sizeof($this->attributes['rfc822MailMember']), 'name' => 'rec_number'));
|
array('kind' => 'input', 'type' => 'hidden', 'value' => sizeof($this->attributes['rfc822MailMember']), 'name' => 'rec_number'));
|
||||||
|
|
Loading…
Reference in New Issue