Skip to content

Commit

Permalink
com-newsfeeds
Browse files Browse the repository at this point in the history
  • Loading branch information
brianteeman committed Sep 2, 2018
1 parent 4fa516b commit 51e5b63
Showing 1 changed file with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
<th scope="col" style="width:1%" class="nowrap text-center d-none d-md-table-cell">
<?php echo HTMLHelper::_('searchtools.sort', '', 'a.ordering', $listDirn, $listOrder, null, 'asc', 'JGRID_HEADING_ORDERING', 'icon-menu-2'); ?>
</th>
<td style="width:1%">
<td style="width:1%" class="text-center">
<?php echo HTMLHelper::_('grid.checkall'); ?>
</td>
<th scope="col" style="width:5%; min-width:85px" class="nowrap text-center">
Expand All @@ -62,13 +62,13 @@
<th scope="col" class="title">
<?php echo HTMLHelper::_('searchtools.sort', 'JGLOBAL_TITLE', 'a.name', $listDirn, $listOrder); ?>
</th>
<th scope="col" style="width:10%" class="nowrap d-none d-md-table-cell text-center">
<th scope="col" style="width:10%" class="nowrap d-none d-md-table-cell">
<?php echo HTMLHelper::_('searchtools.sort', 'JGRID_HEADING_ACCESS', 'access_level', $listDirn, $listOrder); ?>
</th>
<th scope="col" style="width:10%" class="nowrap d-none d-md-table-cell text-center">
<th scope="col" style="width:10%" class="nowrap d-none d-md-table-cell">
<?php echo HTMLHelper::_('searchtools.sort', 'COM_NEWSFEEDS_NUM_ARTICLES_HEADING', 'numarticles', $listDirn, $listOrder); ?>
</th>
<th scope="col" style="width:10%" class="nowrap d-none d-md-table-cell text-center">
<th scope="col" style="width:10%" class="nowrap d-none d-md-table-cell">
<?php echo HTMLHelper::_('searchtools.sort', 'COM_NEWSFEEDS_CACHE_TIME_HEADING', 'a.cache_time', $listDirn, $listOrder); ?>
</th>
<?php if ($assoc) : ?>
Expand All @@ -81,7 +81,7 @@
<?php echo HTMLHelper::_('searchtools.sort', 'JGRID_HEADING_LANGUAGE', 'language_title', $listDirn, $listOrder); ?>
</th>
<?php endif; ?>
<th scope="col" style="width:5%" class="nowrap d-none d-md-table-cell text-center">
<th scope="col" style="width:5%" class="nowrap d-none d-md-table-cell">
<?php echo HTMLHelper::_('searchtools.sort', 'JGRID_HEADING_ID', 'a.id', $listDirn, $listOrder); ?>
</th>
</tr>
Expand Down Expand Up @@ -143,13 +143,13 @@
</div>
</div>
</th>
<td class="small d-none d-md-table-cell text-center">
<td class="small d-none d-md-table-cell">
<?php echo $this->escape($item->access_level); ?>
</td>
<td class="d-none d-md-table-cell text-center">
<td class="d-none d-md-table-cell">
<?php echo (int) $item->numarticles; ?>
</td>
<td class="d-none d-md-table-cell text-center">
<td class="d-none d-md-table-cell">
<?php echo (int) $item->cache_time; ?>
</td>
<?php if ($assoc) : ?>
Expand All @@ -164,7 +164,7 @@
<?php echo LayoutHelper::render('joomla.content.language', $item); ?>
</td>
<?php endif; ?>
<td class="d-none d-md-table-cell text-center">
<td class="d-none d-md-table-cell">
<?php echo (int) $item->id; ?>
</td>
</tr>
Expand Down

0 comments on commit 51e5b63

Please sign in to comment.