@php /** * JCH Optimize - Performs several front-end optimizations for fast downloads * * @package jchoptimize/joomla-platform * @author Samuel Marshall * @copyright Copyright (c) 2020 Samuel Marshall / JCH Optimize * @license GNU/GPLv3, or later. See LICENSE file * * If LICENSE file missing, see . */ defined( '_JEXEC' ) or die( 'Restricted Access' ); @endphp {{-- Allow tooltips, used in grid headers --}} @if (version_compare(JVERSION, '3.999.999', 'le')) {{-- @jhtml('behavior.tooltip') --}} @endif {{-- Allow SHIFT+click to select multiple rows --}} {{-- @jhtml('behavior.multiselect') --}} @section('navigation') {{-- Navigation --}} @stop @section('browse-filters') {{-- Filters above the table. --}} @stop @section('browse-table-header') {{-- Table header. Column headers and optional filters displayed above the column headers. --}} @stop @section('browse-norecords') {{-- Table body shown when no records are present. --}} @php echo JText::_( 'COM_JCHOPTIMIZE_NO_RECORDS' ) @endphp @stop @section('browse-table-body-withrecords') {{-- Table body shown when records are present. --}} @php $i = 0; @endphp @foreach($items as $row) {{-- You need to implement me! --}} @endforeach @stop @section('browse-table-footer') {{-- Table footer. The default is showing the pagination footer. --}} {{-- $this->pagination->getListFooter() --}} @stop @section('browse-hidden-fields') {{-- Put your additional hidden fields in this section --}} @stop @yield('browse-page-top') @yield('navigation') {{-- Administrator form for browse views --}}
{{-- Filters and ordering --}} @yield('browse-filters') @unless(count($items)) @yield('browse-norecords') @else
@yield('browse-table-header') @yield('browse-table-footer') @yield('browse-table-body-withrecords')
@endunless {{-- Hidden form fields --}}
@section('browse-default-hidden-fields') @show @yield('browse-hidden-fields')