JComments

Интеграция JComments в файловый архив JDownloads

JDownloads — компонент файлового архива для Joomla 1.0 и Joomla 1.5. После установки данной интеграции посетители сайта получат возможность комментировать файлы в файловом архиве.

  1. Откройте файл /components/com_jdownloads/jdownloads.html.php
  2. Найдите строчки:
        $html_file = str_replace('{hits_value}',$file->downloads, $html_file);
     
        $footer = makeFooter(true);  
        $html_file .= $footer;
    и замените их на:
        $html_file = str_replace('{hits_value}',$file->downloads, $html_file);
     
        global $mainframe;
        $jcomments = $mainframe->getCfg('absolute_path') . '/components/com_jcomments/jcomments.php';
        if (file_exists($jcomments)) {
            require_once($jcomments);
            $obj_id = $file->file_id;
            $obj_title = $file->file_title;
            $html_file .= JComments::showComments($obj_id, 'com_jdownloads', $obj_title);
        }
             
        $footer = makeFooter(true);  
        $html_file .= $footer;

Полезные ссылки:

 
JoomlaTune