/** * @return void */ public function detailsAction() { $request = $this->getRequest(); $id = $this->_helper->IdConvert->hexToStr($request->getParam('id')); $data = array(); try { $data = $this->_model->getSmsFull($id); } catch (Logic_Ws_Sms_Exception $e) { $this->_helper->messenger('error', MSG_ERROR, $e); $this->_helper->redirector('index'); return; } $this->view->last = $this->getRequestStackPrevious(); $this->view->data = $data; }