mirror of
https://github.com/joomla-extensions/weblinks.git
synced 2024-12-24 17:40:23 +00:00
Apply auto cs fix from phpcbf
This commit is contained in:
parent
2b960d4bed
commit
4805fc16f2
@ -348,4 +348,4 @@ class Com_WeblinksInstallerScript
|
||||
$db->execute();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -186,9 +186,11 @@ class CategoryModel extends ListModel
|
||||
{
|
||||
$nowDate = Factory::getDate()->toSql();
|
||||
$query->where('(' . $db->quoteName('a.publish_up')
|
||||
. ' IS NULL OR ' . $db->quoteName('a.publish_up') . ' <= :publish_up)')
|
||||
. ' IS NULL OR ' . $db->quoteName('a.publish_up') . ' <= :publish_up)'
|
||||
)
|
||||
->where('(' . $db->quoteName('a.publish_down')
|
||||
. ' IS NULL OR ' . $db->quoteName('a.publish_down') . ' >= :publish_down)')
|
||||
. ' IS NULL OR ' . $db->quoteName('a.publish_down') . ' >= :publish_down)'
|
||||
)
|
||||
->bind(':publish_up', $nowDate)
|
||||
->bind(':publish_down', $nowDate);
|
||||
}
|
||||
|
@ -126,9 +126,11 @@ class WeblinkModel extends ItemModel
|
||||
// Filter by start and end dates.
|
||||
$nowDate = Factory::getDate()->toSql();
|
||||
$query->where('(' . $db->quoteName('a.publish_up')
|
||||
. ' IS NULL OR ' . $db->quoteName('a.publish_up') . ' <= :publish_up)')
|
||||
. ' IS NULL OR ' . $db->quoteName('a.publish_up') . ' <= :publish_up)'
|
||||
)
|
||||
->where('(' . $db->quoteName('a.publish_down')
|
||||
. ' IS NULL OR ' . $db->quoteName('a.publish_down') . ' >= :publish_down)')
|
||||
. ' IS NULL OR ' . $db->quoteName('a.publish_down') . ' >= :publish_down)'
|
||||
)
|
||||
->bind(':publish_up', $nowDate)
|
||||
->bind(':publish_down', $nowDate);
|
||||
}
|
||||
|
@ -37,7 +37,7 @@ $params = $this->state->get('params');
|
||||
<?php if ($this->params->get('show_page_heading')) : ?>
|
||||
<div class="page-header">
|
||||
<h1>
|
||||
<?php echo $this->escape($this->params->get('page_heading')); ?>
|
||||
<?php echo $this->escape($this->params->get('page_heading')); ?>
|
||||
</h1>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
@ -32,13 +32,13 @@ if (!$canEdit)
|
||||
</h2>
|
||||
</div>
|
||||
<?php if ($canEdit) : ?>
|
||||
<div class="icons">
|
||||
<div class="float-end">
|
||||
<div>
|
||||
<?php echo HTMLHelper::_('weblinkicon.edit', $this->item, $this->item->params); ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="icons">
|
||||
<div class="float-end">
|
||||
<div>
|
||||
<?php echo HTMLHelper::_('weblinkicon.edit', $this->item, $this->item->params); ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
<?php // Content is generated by content plugin event "onContentAfterTitle" ?>
|
||||
<?php echo $this->item->event->afterDisplayTitle; ?>
|
||||
|
@ -35,7 +35,8 @@ class WeblinksHelper
|
||||
**/
|
||||
public static function getList($params, $app)
|
||||
{
|
||||
/* @var \Joomla\Component\Weblinks\Site\Model\CategoryModel $model */
|
||||
// @var \Joomla\Component\Weblinks\Site\Model\CategoryModel $model
|
||||
|
||||
$model = $app->bootComponent('com_weblinks')->getMVCFactory()
|
||||
->createModel('Category', 'Site', ['ignore_request' => true]);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user