mirror of
https://github.com/joomla-extensions/weblinks.git
synced 2025-01-11 23:55:49 +00:00
Show custom fields in category view
This commit is contained in:
parent
d569edd0dd
commit
c4b4dfcc6f
@ -79,17 +79,12 @@ class WeblinksComponent extends MVCComponent implements CategoryServiceInterface
|
|||||||
* @since 4.0.0
|
* @since 4.0.0
|
||||||
*/
|
*/
|
||||||
public function validateSection($section, $item = null)
|
public function validateSection($section, $item = null)
|
||||||
{
|
|
||||||
if (Factory::getApplication()->isClient('site'))
|
|
||||||
{
|
{
|
||||||
// On the front end we need to map some sections
|
// On the front end we need to map some sections
|
||||||
switch ($section)
|
|
||||||
|
if (Factory::getApplication()->isClient('site') && in_array($section, ['category', 'form']))
|
||||||
{
|
{
|
||||||
// Adding/Editing a weblink
|
|
||||||
case 'form':
|
|
||||||
$section = 'weblink';
|
$section = 'weblink';
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($section != 'weblink')
|
if ($section != 'weblink')
|
||||||
|
@ -29,6 +29,14 @@ class HtmlView extends CategoryView
|
|||||||
*/
|
*/
|
||||||
protected $extension = 'com_weblinks';
|
protected $extension = 'com_weblinks';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Run the standard Joomla plugins
|
||||||
|
*
|
||||||
|
* @var boolean
|
||||||
|
* @since 4.0
|
||||||
|
*/
|
||||||
|
protected $runPlugins = true;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Execute and display a template script.
|
* Execute and display a template script.
|
||||||
*
|
*
|
||||||
|
@ -146,6 +146,12 @@ $listDirn = $this->escape($this->state->get('list.direction'));
|
|||||||
</div>
|
</div>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
||||||
|
<?php // Content is generated by content plugin event "onContentAfterTitle" ?>
|
||||||
|
<?php echo $item->event->afterDisplayTitle; ?>
|
||||||
|
|
||||||
|
<?php // Content is generated by content plugin event "onContentBeforeDisplay" ?>
|
||||||
|
<?php echo $item->event->beforeDisplayContent; ?>
|
||||||
|
|
||||||
<?php if ($this->params->get('show_tags', 1) && !empty($item->tags->itemTags)) : ?>
|
<?php if ($this->params->get('show_tags', 1) && !empty($item->tags->itemTags)) : ?>
|
||||||
<div class="mt-2 mb-2">
|
<div class="mt-2 mb-2">
|
||||||
<?php echo LayoutHelper::render('joomla.content.tags', $item->tags->itemTags); ?>
|
<?php echo LayoutHelper::render('joomla.content.tags', $item->tags->itemTags); ?>
|
||||||
|
Loading…
Reference in New Issue
Block a user