com_extensiondistributor/admin/views/subscriptions/tmpl/default.php

94 lines
3.9 KiB
PHP
Raw Normal View History

2022-06-02 15:01:28 +00:00
<?php
/*----------------------------------------------------------------------------------| www.vdm.io |----/
Agence Agerix
/-------------------------------------------------------------------------------------------------------/
@version 1.x.x
@build 2nd June, 2022
@created 12th December, 2020
@package Extension Distributor
@subpackage default.php
@author Emmanuel Danan <https://agerix.fr>
@copyright Copyright (C) 2021. 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');
JHtml::_('behavior.multiselect');
JHtml::_('dropdown.init');
JHtml::_('formbehavior.chosen', '.multipleSubscriptionsfilteruser', null, array('placeholder_text_multiple' => '- ' . JText::_('COM_EXTENSIONDISTRIBUTOR_FILTER_SELECT_JOOMLA_USER') . ' -'));
JHtml::_('formbehavior.chosen', '.multiplePackagekeys', null, array('placeholder_text_multiple' => '- ' . JText::_('COM_EXTENSIONDISTRIBUTOR_FILTER_SELECT_PACKAGE') . ' -'));
JHtml::_('formbehavior.chosen', 'select');
if ($this->saveOrder)
{
$saveOrderingUrl = 'index.php?option=com_extensiondistributor&task=subscriptions.saveOrderAjax&tmpl=component';
JHtml::_('sortablelist.sortable', 'subscriptionList', 'adminForm', strtolower($this->listDirn), $saveOrderingUrl);
}
?>
<form action="<?php echo JRoute::_('index.php?option=com_extensiondistributor&view=subscriptions'); ?>" method="post" name="adminForm" id="adminForm">
<?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 searchtools
echo JLayoutHelper::render('joomla.searchtools.default', array('view' => $this));
?>
<?php if (empty($this->items)): ?>
<div class="alert alert-no-items">
<?php echo JText::_('JGLOBAL_NO_MATCHING_RESULTS'); ?>
</div>
<?php else : ?>
<table class="table table-striped" id="subscriptionList">
<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 JHtml::_(
'bootstrap.renderModal',
'collapseModal',
array(
'title' => JText::_('COM_EXTENSIONDISTRIBUTOR_SUBSCRIPTIONS_BATCH_OPTIONS'),
'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 JHtml::_('form.token'); ?>
</form>
<script type="text/javascript">
// subscriptions footer script
//jQuery("#toolbar-new").hide();
jQuery("#toolbar-edit").hide();
jQuery("#toolbar-archive").hide();
//jQuery("#toolbar-publish").hide();
//jQuery("#toolbar-unpublish").hide();
jQuery("#toolbar-checkin").hide();
jQuery("#toolbar-batch").hide();
//jQuery("#toolbar-trash").hide();
jQuery(document).ready(function(){
jQuery("#filter_published option[value='2']").remove();
jQuery("#filter_published option[value='*']").remove();
jQuery("#filter_published").trigger("liszt:updated");
});
</script>