joomla-component/admin/views/notes/tmpl/default.php

80 lines
2.9 KiB
PHP
Raw Normal View History

2023-07-26 09:09:42 +00:00
<?php
/*----------------------------------------------------------------------------------| io.vdm.dev |----/
Vast Development Method
/-------------------------------------------------------------------------------------------------------/
@package getBible.net
@created 3rd December, 2015
@author Llewellyn van der Merwe <https://getbible.net>
@git Get Bible <https://git.vdm.dev/getBible>
@github Get Bible <https://github.com/getBible>
@support Get Bible <https://git.vdm.dev/getBible/support>
@copyright Copyright (C) 2015. All Rights Reserved
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
/------------------------------------------------------------------------------------------------------*/
// No direct access to this file
defined('_JEXEC') or die('Restricted access');
use Joomla\CMS\Factory;
use Joomla\CMS\Language\Text;
use Joomla\CMS\HTML\HTMLHelper as Html;
use Joomla\CMS\Layout\LayoutHelper;
use Joomla\CMS\Router\Route;
Html::_('behavior.multiselect');
Html::_('dropdown.init');
Html::_('formbehavior.chosen', 'select');
Html::_('formbehavior.chosen', '.multipleAccessLevels', null, ['placeholder_text_multiple' => '- ' . Text::_('COM_GETBIBLE_FILTER_SELECT_ACCESS') . ' -']);
2023-07-26 09:09:42 +00:00
if ($this->saveOrder)
{
$saveOrderingUrl = 'index.php?option=com_getbible&task=notes.saveOrderAjax&tmpl=component';
Html::_('sortablelist.sortable', 'noteList', 'adminForm', strtolower($this->listDirn), $saveOrderingUrl);
2023-07-26 09:09:42 +00:00
}
?>
<form action="<?php echo Route::_('index.php?option=com_getbible&view=notes'); ?>" method="post" name="adminForm" id="adminForm">
2023-07-26 09:09:42 +00:00
<?php if(!empty( $this->sidebar)): ?>
<div id="j-sidebar-container" class="span2">
<?php echo $this->sidebar; ?>
</div>
<div id="j-main-container" class="span10">
<?php else : ?>
<div id="j-main-container">
<?php endif; ?>
<?php
// Add the trash helper layout
echo LayoutHelper::render('trashhelper', $this);
2023-07-26 09:09:42 +00:00
// Add the searchtools
echo LayoutHelper::render('joomla.searchtools.default', array('view' => $this));
2023-07-26 09:09:42 +00:00
?>
<?php if (empty($this->items)): ?>
<div class="alert alert-no-items">
<?php echo Text::_('JGLOBAL_NO_MATCHING_RESULTS'); ?>
2023-07-26 09:09:42 +00:00
</div>
<?php else : ?>
<table class="table table-striped" id="noteList">
<thead><?php echo $this->loadTemplate('head');?></thead>
<tfoot><?php echo $this->loadTemplate('foot');?></tfoot>
<tbody><?php echo $this->loadTemplate('body');?></tbody>
</table>
<?php // Load the batch processing form. ?>
<?php if ($this->canCreate && $this->canEdit) : ?>
<?php echo Html::_(
2023-07-26 09:09:42 +00:00
'bootstrap.renderModal',
'collapseModal',
array(
'title' => Text::_('COM_GETBIBLE_NOTES_BATCH_OPTIONS'),
2023-07-26 09:09:42 +00:00
'footer' => $this->loadTemplate('batch_footer')
),
$this->loadTemplate('batch_body')
); ?>
<?php endif; ?>
<input type="hidden" name="boxchecked" value="0" />
</div>
<?php endif; ?>
<input type="hidden" name="task" value="" />
<?php echo Html::_('form.token'); ?>
2023-07-26 09:09:42 +00:00
</form>