File: /home/confeduphaar/backip-old-files/components/com_jevents/views/default/list/tmpl/events_body.php
<?php
defined('_JEXEC') or die('Restricted access');
use Joomla\CMS\Factory;
use Joomla\CMS\Router\Route;
use Joomla\CMS\HTML\HTMLHelper;
use Joomla\CMS\Component\ComponentHelper;
JevHtmlBootstrap::framework();
JEVHelper::script("components/com_jevents/assets/js/jQnc.js");
HTMLHelper::stylesheet("com_jevents/bootstrap.css", array(), true);
HTMLHelper::stylesheet("com_jevents/bootstrap-responsive.css", array(), true);
HTMLHelper::stylesheet("components/com_jevents/assets/css/jquery.resizableColumns.css");
JEVHelper::script("components/com_jevents/assets/js/store.min.js");
//JEVHelper::script("components/com_jevents/assets/js/jquery.resizableColumns.min.js");
JEVHelper::script("components/com_jevents/assets/js/jquery.resizableColumns.js");
$data = $this->data;
$Itemid = JEVHelper::getItemid();
$compparams = ComponentHelper::getParams("com_jevents");
$app = Factory::getApplication('site');
$params = $app->getParams();
$active = $app->getMenu()->getActive();
if ($active)
{
$params->merge($active->getParams());
}
$infields = explode("||", $compparams->get("columns", "TITLE_LINK|Title Link|Title"));
$cols = array();
$titles = array();
foreach ($infields as $infield)
{
$parts = explode("|", $infield);
$cols[] = $parts[0];
$titles[] = $parts[2];
}
?>
<form action="<?php echo Route::_("index.php?option=com_jevents&task=list.events&layout=events&Itemid=$Itemid"); ?>"
method="post" name="adminForm" id="adminForm">
<div id="eventlist">
<table class="eventlist table table-bordered" data-resizable-columns-id="demo-table">
<thead>
<tr>
<?php
$i = 0;
foreach ($titles as $title)
{
?>
<th data-resizable-column-id="<?php echo $titles[$i];
$i++; ?>">
<?php
echo $title;
?>
</th>
<?php
}
?>
</tr>
</thead>
<tbody>
<?php
$style = '';
$bgStyle = '';
if ($params->get('setrowbgcolor', 0)) {
$style = "style='background-color:{{Event background colour:COLOUR}}'";
}
$template = "<tr $style>";
foreach ($cols as $col)
{
$bgStyle = '';
if($col === 'COLOUR'){
$bgStyle = "style='background-color:{{xx:$col}}'";
$template .= "<td class='eventlist_col' $bgStyle> </td>";
} else {
$template .= "<td class='eventlist_col' $bgStyle>{{xx:$col}}</td>";
}
}
$template .= "</tr>";
$num_events = count($data['rows']);
$chdate = "";
if ($num_events > 0)
{
for ($r = 0; $r < $num_events; $r++)
{
$row = $data['rows'][$r];
$this->loadedFromTemplate('icalevent.list_row', $row, 0, $template);
//($view, $template_name, $event, $mask, $template_value = false)
}
}
?>
</tbody>
</table>
<?php
// Create the pagination object
if ($data["total"] > $data["limit"])
{
$this->paginationForm($data["total"], $data["limitstart"], $data["limit"]);
}
?>
</div>
</form>
<script>
(function ($) {
if ($("table.eventlist th").length > 1) {
$("table.eventlist").resizableColumns(
{store: window.store}
);
}
})(jevjq);
</script>