Example #1
0
 /** Set up the mint action
  * @access public
  * @return void
  * @throws Pas_Exception_Param
  */
 public function mintAction()
 {
     if ($this->getParam('id', false)) {
         $id = $this->getParam('id');
         $this->view->rommints = $this->_mints->getMintDetails($id);
         $actives = new Rulers();
         $this->view->actives = $actives->getRomanMintRulerList($id);
     } else {
         throw new Pas_Exception_Param($this->_missingParameter, 500);
     }
 }