/**
  * Pull product for a detailed view
  * w/ no edit option
  */
 public function viewAction()
 {
     if ($this->_request->getParam('id', null) === null) {
         $this->_redirect('/admin/products/');
     }
     $identity = Zend_Auth::getInstance()->getIdentity()->toArray();
     $productGateway = new Products_Model_ProductGateway();
     $product = $productGateway->fetchProductWithAllDetailsById($this->_request->getParam('id'));
     if ($product === null) {
         $this->_redirect('/admin/products/');
     }
     $request = Zend_Controller_Front::getInstance()->getRequest();
     $this->view->module = $request->getModuleName();
     $this->view->controller = $request->getControllerName();
     $this->view->product = $product;
 }