0
/var/www/joomla/components/com_ducatspremium/dispatcher.php에 'F0FDispatcher'클래스가 없습니다. Joomla 프로젝트에서 온라인 10 오류.'F0FDispatcher'클래스가 /var/www/joomla/components/com_ducatspremium/dispatcher.php 온라인에 없습니다.
내 디스패처 번호 :
defined('_JEXEC') or die();
include_once JPATH_LIBRARIES.'/fof/include.php';
class DucatsPremiumDispatcher extends F0FDispatcher
{
public function onBeforeDispatch() {
$result = parent::onBeforeDispatch();
if($result) {
// Load Akeeba Strapper
include_once JPATH_ROOT.'/media/akeeba_strapper/strapper.php';
AkeebaStrapper::bootstrap();
AkeebaStrapper::jQueryUI();
AkeebaStrapper::addCSSfile('media://com_timesheet/css/frontend.css');
}
return $result;
}
}