protected function _generateCommon()
 {
     // Param set variable
     $this->_destId = $this->_getParam('destId');
     // Model
     $destDb = new Model_DbTable_Destination();
     $destDescDb = new Model_DbTable_DestinationDescription();
     $areaToPoiDb = new Model_DbTable_AreaToPoi();
     $lang = $this->_languageId;
     if ($lang == 1) {
         $destination = $destDb->getAllByIdLang($this->_destId, $this->_languageId);
     } else {
         $destination = $destDb->getAllByIdLangForIndo($this->_destId, $this->_languageId);
     }
     if ($this->_sess->userId) {
         $this->view->rate = $this->_rate;
     }
     //$destProvince = $areaToPoiDb->getProvinceByPoiId($this->_destId);
     $nameDest = $destDescDb->getNameById($this->_destId, $this->_languageId);
     $taglineDest = $destDescDb->getTaglineById2($this->_destId, $this->_languageId);
     if ($taglineDest != null) {
         $nameDestfull = $nameDest . " : " . $taglineDest;
     } else {
         $nameDestfull = $nameDest;
     }
     // - Set protected value variables
     $this->_destTitle = $destDescDb->getNameById($this->_destId, $this->_languageId);
     $this->_formatDestTitle = $this->view->makeUrlFormat($this->_destTitle);
     // View
     $this->view->destination = $destination;
     $this->view->destId = $this->_destId;
     $this->view->destTitle = $nameDestfull;
     $this->view->formatDestTitle = $this->_formatDestTitle;
 }