Skip to content

Commit

Permalink
Clean up ContentViewCategory
Browse files Browse the repository at this point in the history
  • Loading branch information
joomdonation committed Jan 15, 2018
1 parent b9abdd1 commit 05e1d70
Showing 1 changed file with 15 additions and 38 deletions.
53 changes: 15 additions & 38 deletions components/com_content/views/category/view.html.php
Expand Up @@ -9,6 +9,8 @@

defined('_JEXEC') or die;

use Joomla\CMS\Factory;
use Joomla\CMS\Plugin\PluginHelper;
use Joomla\Registry\Registry;

/**
Expand Down Expand Up @@ -77,9 +79,10 @@ public function display($tpl = null)
$numLeading = $params->def('num_leading_articles', 1);
$numIntro = $params->def('num_intro_articles', 4);
$numLinks = $params->def('num_links', 4);
$this->vote = JPluginHelper::isEnabled('content', 'vote');
$this->vote = PluginHelper::isEnabled('content', 'vote');

JPluginHelper::importPlugin('content');
PluginHelper::importPlugin('content');
$dispatcher = JEventDispatcher::getInstance();

// Compute the article slugs and prepare introtext (runs content plugins).
foreach ($this->items as $item)
Expand All @@ -97,8 +100,6 @@ public function display($tpl = null)
$item->catslug = $item->category_alias ? ($item->catid . ':' . $item->category_alias) : $item->catid;
$item->event = new stdClass;

$dispatcher = JEventDispatcher::getInstance();

// Old plugins: Ensure that text property is available
if (!isset($item->text))
{
Expand All @@ -120,29 +121,6 @@ public function display($tpl = null)
$item->event->afterDisplayContent = trim(implode("\n", $results));
}

// Check for layout override only if this is not the active menu item
// If it is the active menu item, then the view and category id will match
$app = JFactory::getApplication();
$active = $app->getMenu()->getActive();
$menus = $app->getMenu();
$pathway = $app->getPathway();
$title = null;

if ((!$active) || ((strpos($active->link, 'view=category') === false) || (strpos($active->link, '&id=' . (string) $this->category->id) === false)))
{
// Get the layout from the merged category params
if ($layout = $this->category->params->get('category_layout'))
{
$this->setLayout($layout);
}
}
// At this point, we are in a menu item, so we don't override the layout
elseif (isset($active->query['layout']))
{
// We need to set the layout from the query in case this is an alternative menu item (with an alternative layout)
$this->setLayout($active->query['layout']);
}

// For blog layouts, preprocess the breakdown of leading, intro and linked articles.
// This makes it much easier for the designer to just interrogate the arrays.
if ($params->get('layout_type') === 'blog' || $this->getLayout() === 'blog')
Expand Down Expand Up @@ -182,16 +160,17 @@ public function display($tpl = null)

// Because the application sets a default page title,
// we need to get it from the menu item itself
$menu = $menus->getActive();

if ($menu
&& $menu->component == 'com_content'
&& isset($menu->query['view'], $menu->query['id'])
&& $menu->query['view'] == 'category'
&& $menu->query['id'] == $this->category->id)
$app = Factory::getApplication();
$active = $app->getMenu()->getActive();

if ($active
&& $active->component == 'com_content'
&& isset($active->query['view'], $active->query['id'])
&& $active->query['view'] == 'category'
&& $active->query['id'] == $this->category->id)
{
$this->params->def('page_heading', $this->params->get('page_title', $menu->title));
$title = $this->params->get('page_title', $menu->title);
$this->params->def('page_heading', $this->params->get('page_title', $active->title));
$title = $this->params->get('page_title', $active->title);
}
else
{
Expand All @@ -200,8 +179,6 @@ public function display($tpl = null)
$this->params->set('page_title', $title);
}

$id = (int) @$menu->query['id'];

// Check for empty title and add site name if param is set
if (empty($title))
{
Expand Down

0 comments on commit 05e1d70

Please sign in to comment.