Новости Joomla

0 Пользователей и 1 Гость просматривают эту тему.
  • 3 Ответов
  • 924 Просмотров
*

neomaxim

  • Осваиваюсь на форуме
  • 26
  • 0 / 0
Здравствуйте! Такая проблема не знаю как убирать отображения плагинов с главной страницы, и страницы категорий. Что бы плагин отображался только в статье. Плагин мой называется extravote. Помогите пожалуйста!   
*

Fedor Vlasenko

  • Живу я здесь
  • 3845
  • 733 / 7
  • https://fedor-vlasenko.web.app
открой код плагина найди функцию его включения вставь проверку на главную и если главная return
*

neomaxim

  • Осваиваюсь на форуме
  • 26
  • 0 / 0
Я в PHP плохо разбираюсь((

Вот код плагина, где тут нужно это прописать?

Код: php
<?php
// No direct access
defined('_JEXEC') or die;
jimport('joomla.plugin.plugin');
class plgContentExtraVote extends JPlugin
{
protected $article_id;
public function __construct(& $subject, $config)
{
parent::__construct($subject, $config);
$this->loadLanguage();
}
public function onContentBeforeDisplay($context, &$article, &$params, $limitstart = 1)
{
if (strpos($context, 'com_content')!== false) {
$this->article_id = $article->id;
$this->ExtraVotePrepare($article, $params);
if ( $this->params->get('display') == 0  )
{
$article->xid = 'x';
return $this->ContentExtraVote($article, $params);
}
}
  }

protected function ContentExtraVote(&$article, &$params)
{
$rating_count=$rating_sum=0;
$html='';
if ($params->get('show_vote'))
{
$db =& JFactory::getDBO();
$query='SELECT * FROM #__content_rating WHERE content_id='. $this->article_id;
$db->setQuery($query);
$vote=$db->loadObject();
if($vote) {
$rating_sum = intval($vote->rating_sum);
$rating_count = intval($vote->rating_count);
}
$html .= $this->plgContentExtraVoteStars( $this->article_id, $rating_sum, $rating_count, $article->xid );
}
return $html;
  }
  protected function plgContentExtraVoteStars( $id, $rating_sum, $rating_count, $xid )
{
$document = JFactory::getDocument();
if ( $this->params->get('css', 1) ) :
$document->addStyleSheet(JURI::root(true).'/plugins/content/extravote/scripts/extravote.css');
endif;
$document->addScript(JURI::root(true).'/plugins/content/extravote/scripts/extravote.js');
        $live_path = JURI::base();
     global $plgContentExtraVoteAddScript;
$counter = $this->params->get('counter',1);
$unrated = $this->params->get('unrated',1);
$percent = 0;
$stars = '';
if(!$plgContentExtraVoteAddScript){
         $document->addScriptDeclaration( "var sfolder = '".JURI::base(true)."';
var extravote_text=Array('".JTEXT::_('PLG_CONTENT_EXTRAVOTE_NO_AJAX')."','".JTEXT::_('PLG_CONTENT_EXTRAVOTE_LOADING')."','".JTEXT::_('PLG_CONTENT_EXTRAVOTE_THANKS')."','".JTEXT::_('PLG_CONTENT_EXTRAVOTE_LOGIN')."','".JTEXT::_('PLG_CONTENT_EXTRAVOTE_RATED')."','".JTEXT::_('PLG_CONTENT_EXTRAVOTE_VOTES')."','".JTEXT::_('PLG_CONTENT_EXTRAVOTE_VOTE')."');");
     $plgContentExtraVoteAddScript = 1;
}
if($rating_count!=0) {
$percent = number_format((intval($rating_sum) / intval( $rating_count ))*20,2);
} elseif ($unrated == 0) {
$counter = -1;
}
if ( (int)$xid ) {
if ( $counter == 2 ) $counter = 0;
$stars = '-small';
$br = "";
} else {
if ( $counter == 3 ) $counter = 0;
$br = "<br />";
}

$html = "
<span class=\"extravote-container".$stars."\"".( $xid != 'x' ? "" : " style=\"margin-top:5px;\"" ).">
  <ul class=\"extravote-stars".$stars."\">
    <li id=\"rating_".$id."_".$xid."\" class=\"current-rating\" style=\"width:".(int)$percent."%;\"></li>
    <li><a href=\"javascript:void(null)\" onclick=\"javascript:JVXVote(".$id.",1,".$rating_sum.",".$rating_count.",'".$xid."',".$counter.");\" title=\"".JTEXT::_('PLG_CONTENT_EXTRAVOTE_VERY_POOR')."\" class=\"ev-one-star\">1</a></li>
    <li><a href=\"javascript:void(null)\" onclick=\"javascript:JVXVote(".$id.",2,".$rating_sum.",".$rating_count.",'".$xid."',".$counter.");\" title=\"".JTEXT::_('PLG_CONTENT_EXTRAVOTE_POOR')."\" class=\"ev-two-stars\">2</a></li>
    <li><a href=\"javascript:void(null)\" onclick=\"javascript:JVXVote(".$id.",3,".$rating_sum.",".$rating_count.",'".$xid."',".$counter.");\" title=\"".JTEXT::_('PLG_CONTENT_EXTRAVOTE_REGULAR')."\" class=\"ev-three-stars\">3</a></li>
    <li><a href=\"javascript:void(null)\" onclick=\"javascript:JVXVote(".$id.",4,".$rating_sum.",".$rating_count.",'".$xid."',".$counter.");\" title=\"".JTEXT::_('PLG_CONTENT_EXTRAVOTE_GOOD')."\" class=\"ev-four-stars\">4</a></li>
    <li><a href=\"javascript:void(null)\" onclick=\"javascript:JVXVote(".$id.",5,".$rating_sum.",".$rating_count.",'".$xid."',".$counter.");\" title=\"".JTEXT::_('PLG_CONTENT_EXTRAVOTE_VERY_GOOD')."\" class=\"ev-five-stars\">5</a></li>
  </ul>
</span>
<span style=\"display: none;\" id=\"extravote_".$id."_".$xid."\" class=\"extravote-count\"><br/><small>
<div itemprop=\"aggregateRating\"
    itemscope itemtype=\"http://schema.org/AggregateRating\">";
 
 
   if ( $counter != -1 ) {
   if ( $counter != 0 ) {
$html .="Рейтинг ";
}
}
  $html .="<span itemprop=\"ratingValue\">";
 
                                  if ( $counter != -1 ) {
   if ( $counter != 0 ) {
$html .=number_format((intval($rating_sum) / intval( $rating_count )),1);
 
}
}
  $html .="</span>";
 
                                 if ( $counter != -1 ) {
   if ( $counter != 0 ) {
$html .=" из ";
}
}
 
  $html .="<span itemprop=\"bestRating\">";
 
 
                                 if ( $counter != -1 ) {
   if ( $counter != 0 ) {
$html .=5;
}
}
 
  $html .="</span>";
if ( $counter != -1 ) {
   if ( $counter != 0 ) {
$html .=". Голосов: ";
}
}
 
  $html .="<span itemprop=\"ratingCount\">";
 
                                  if ( $counter != -1 ) {
   if ( $counter != 0 ) {
$html .=$rating_count;
 
}
}
  $html .="</span></div></small></span>";
 
 
 
return $html;
                       }
 

  protected function ExtraVotePrepare( $article, &$params )
{
   if (isset($this->article_id)) {

       $extra = $this->params->get('extra', 1);
$main  = $this->params->get('main', 1);

$view  = JRequest::getCmd('view');

     if ( $extra != 0 ) {

      $regex = "#{extravote\s*([0-9]+)}#s";

if ( $view != 'article' ) {
if ( $extra == 2 ) {
$article->introtext = preg_replace( $regex, '', $article->introtext );
} else {
$article->introtext = preg_replace_callback( $regex, array($this,'plgContentExtraVoteReplacer'), $article->introtext );
}
} else {
//    $this->article_id = $article->id;
      $article->text = preg_replace_callback( $regex, array($this,'plgContentExtraVoteReplacer'), $article->text );
   }
   }

     if ( $main != 0 ) {

if ( $view != 'article' ) {
if ( $main == 2 ) {
$article->introtext = preg_replace( '#{mainvote}#', '', $article->introtext );
} else {
$article->introtext = preg_replace_callback( '#{mainvote}#', array($this,'plgContentExtraVoteReplacer'), $article->introtext );
}
} else {
      $article->text = preg_replace_callback( '#{mainvote}#', array($this,'plgContentExtraVoteReplacer'), $article->text );
   }
   }

   if ( $this->params->get('display') == 1 )  {

       $article->xid = 'x';
if ( $view == 'article' ) {
       $article->text .= '<br />'.$this->ContentExtraVote($article, $params);
} else {
       $article->introtext .= '<br />'.$this->ContentExtraVote($article, $params);
}
   }
     }
  }
 
protected function plgContentExtraVoteReplacer(&$matches )
{
   $db =& JFactory::getDBO();
   $cid = $this->article_id;
   $rating_sum = 0;
   $rating_count = 0;
if ($matches[0] == '{mainvote}') {
global $extravote_mainvote;
$extravote_mainvote .= 'x';
   $xid = 'x'.$extravote_mainvote;
   $db->setQuery('SELECT * FROM #__content_rating WHERE content_id='. (int)$cid);
} else {
   $xid = (int)$matches[1];
   $db->setQuery('SELECT * FROM #__content_extravote WHERE content_id='.(int)$cid.' AND extra_id='.(int)$xid);
}
   $vote = $db->loadObject();
   if($vote) {
if($vote->rating_count!=0)
$rating_sum = intval($vote->rating_sum);
$rating_count = intval($vote->rating_count);
}
   return $this->plgContentExtraVoteStars( $cid, $rating_sum, $rating_count, $xid );
}

}
*

Fedor Vlasenko

  • Живу я здесь
  • 3845
  • 733 / 7
  • https://fedor-vlasenko.web.app
Код: php-brief
public function onContentBeforeDisplay($context, &$article, &$params, $limitstart = 1)
{
     if (URI::current()!= JURI::base() && strpos($context, 'com_content')!== false) {
Чтобы оставить сообщение,
Вам необходимо Войти или Зарегистрироваться
 

как выводить категории на главной странице.

Автор makarovse

Ответов: 7
Просмотров: 2349
Последний ответ 03.04.2022, 19:50:42
от THE KILLERS
Ошибка при сохранении страницы

Автор gaa001

Ответов: 3
Просмотров: 1274
Последний ответ 05.11.2019, 14:14:37
от gaa001
Последние посещенные страницы пользователем

Автор Fedor Vlasenko

Ответов: 18
Просмотров: 7356
Последний ответ 06.08.2019, 13:41:48
от pH43
Код вывести название страницы

Автор qvaro

Ответов: 1
Просмотров: 1152
Последний ответ 24.11.2018, 18:33:07
от beliyadm
Смещаются элементы страницы при добавлении нового материала

Автор zare4nev_alexander

Ответов: 10
Просмотров: 1009
Последний ответ 01.06.2018, 06:58:16
от draff