/** An individual denomination's entry details * @access public * @return void * @throws Pas_Exception_Param */ public function denominationAction() { if ($this->getParam('id', false)) { $id = $this->getParam('id'); $this->view->id = $id; $this->view->denoms = $this->_denominations->getDenom($id, $this->_period); $regions = new Geography(); $this->view->regions = $regions->getIronAgeDenomGeog($id); } else { throw new Pas_Exception_Param($this->_missingParameter, 500); } }