コード例 #1
0
 /**
  * presenting the translation dialog
  *
  */
 function showTranslate()
 {
     // If direct translation then close the modal window
     if ($direct = intval(JRequest::getVar("direct", 0))) {
         $this->modalClose($direct);
         return;
     }
     JoomfishControllerHelper::setupContentElementCache();
     if (!JoomfishControllerHelper::testSystemBotState()) {
         echo "<div style='font-size:16px;fontF-weight:bold;color:red'>" . JText::_('JF_DATABASE_PLUGIN_NOT_PUBLISHED') . "</div>";
     }
     $this->showTranslationOverview($this->_select_language_id, $this->_catid);
 }