// Some missing icons and multistore problems

This commit is contained in:
Jerome Nadaud
2013-09-25 19:00:29 +02:00
parent 336e29eb67
commit 56f27ae2c1
10 changed files with 26 additions and 20 deletions
+8 -3
View File
@@ -146,15 +146,20 @@ class AdminEmailsControllerCore extends AdminController
),
'test' => array(
'title' => $this->l('Test your email configuration'),
'hide_multishop_checkbox' => true,
'fields' => array(
'PS_SHOP_EMAIL' => array(
'title' => $this->l('Send a test email to'),
'type' => 'text',
'id' => 'testEmail'
'id' => 'testEmail',
'no_multishop_checkbox' => true
),
),
'bottom' => '<div class="row"> <div class="col-lg-9 col-lg-offset-3"><input type="button" class="btn btn-default" name="btEmailTest" id="btEmailTest" value="'.$this->l('Send an email test').'" onclick="verifyMail();" /><br /><br />
<p class="alert" id="mailResultCheck" style="display:none;"></p></div></div>',
'bottom' => '<div class="row"><div class="col-lg-9 col-lg-offset-3">
<button type="button" class="btn btn-default" name="btEmailTest" id="btEmailTest" onclick="verifyMail();"><i class="icon-envelope"></i> '.$this->l('Send an email test').'</button>
<br/><br/>
<div class="alert" id="mailResultCheck" style="display:none;"></div>
</div></div>',
)
);
}