Задача:
В order есть кнопка Send Email.
Нужно поменять текст и стиль. Сделал
if ($this->_isAllowedAction('emails') && !$order->isCanceled()) {
$message = Mage::helper('sales')->__('Can you confirm that you would like to send a Follow-Up email?');
$this->addButton('send_notification', array(
'label' => Mage::helper('sales')->__('Send Follow-up Email'),
'onclick' => "confirmSetLocation('{$message}', '{$this->getEmailUrl()}')",
'class' => "yellow",
));
}
При отправке первого письма нужно заменить текст и класс на новые, после второй отправки письма изменить текст и сделать кнопку неактивную.
Как можно решить данную задачу?