/** Display details for method of manufacture
  */
 public function manufactureAction()
 {
     if ($this->_getParam('id', false)) {
         $manufactures = new Manufactures();
         $this->view->manufactures = $manufactures->getManufactureDetails($this->_getParam('id'));
     } else {
         throw new Pas_Exception_Param($this->_missingParameter);
     }
 }