Example #1
0
 /**
  * Remove the logo
  */
 public function removelogoAction()
 {
     $retval = Isp::RemoveLogo($this->isp['isp_id']);
     if ($retval) {
         $this->_helper->redirector('account', 'isp', 'admin', array('mex' => $this->translator->translate("The task requested has been executed successfully."), 'status' => 'success'));
     } else {
         $this->_helper->redirector('account', 'isp', 'admin', array('mex' => $this->translator->translate("Unable to process the request at this time."), 'status' => 'danger'));
     }
 }