| Current Path : /home/lejardintz/www/administrator/components/com_kunena/template/joomla25/smilies/ |
| Current File : /home/lejardintz/www/administrator/components/com_kunena/template/joomla25/smilies/default.php |
<?php
/**
* Kunena Component
* @package Kunena.Administrator.Template
* @subpackage Smilies
*
* @copyright (C) 2008 - 2016 Kunena Team. All rights reserved.
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL
* @link https://www.kunena.org
**/
defined ( '_JEXEC' ) or die ();
/** @var KunenaAdminViewSmilies $this */
?>
<script type="text/javascript">
Joomla.orderTable = function() {
var dirn = '';
var table = document.getElementById("sortTable");
var direction = document.getElementById("directionTable");
var order = table.options[table.selectedIndex].value;
if (order != '<?php echo $this->listOrdering; ?>') {
dirn = 'asc';
} else {
dirn = direction.options[direction.selectedIndex].value;
}
Joomla.tableOrdering(order, dirn, '');
}
</script>
<div id="kunena" class="admin override">
<div class="container-fluid">
<div class="row-fluid">
<div class="span12">
<div id="j-sidebar-container" class="span2">
<div id="sidebar">
<div class="sidebar-nav"><?php include KPATH_ADMIN.'/template/joomla25/common/menu.php'; ?></div>
</div>
</div>
<div id="j-main-container" class="span10">
<ul class="nav nav-tabs">
<li class="active"><a href="#tab1" data-toggle="tab"><?php echo JText::_('COM_KUNENA_A_EMOTICONS'); ?></a></li>
<li><a href="#tab2" data-toggle="tab"><?php echo JText::_('COM_KUNENA_A_EMOTICONS_UPLOAD'); ?></a></li>
</ul>
<div class="tab-content">
<div id="tab1" class="tab-pane active">
<form action="<?php echo KunenaRoute::_('administrator/index.php?option=com_kunena') ?>" method="post" id="adminForm" name="adminForm">
<input type="hidden" name="view" value="smilies" />
<input type="hidden" name="task" value="" />
<input type="hidden" name="filter_order" value="<?php echo $this->listOrdering ?>" />
<input type="hidden" name="filter_order_Dir" value="<?php echo $this->listDirection ?>" />
<input type="hidden" name="boxchecked" value="0" />
<?php echo JHtml::_( 'form.token' ); ?>
<div id="filter-bar" class="btn-toolbar">
<div class="filter-search btn-group pull-left">
<label for="filter_search" class="element-invisible"><?php echo JText::_('COM_KUNENA_FIELD_LABEL_SEARCHIN');?></label>
<input type="text" name="filter_search" id="filter_search" class="filter" placeholder="<?php echo JText::_('COM_KUNENA_FIELD_INPUT_SEARCH'); ?>" value="<?php echo $this->filterSearch; ?>" title="<?php echo JText::_('COM_KUNENA_FIELD_INPUT_SEARCH'); ?>" />
</div>
<div class="btn-group pull-left">
<button class="btn tip" type="submit" ><?php echo JText::_('COM_KUNENA_SYS_BUTTON_FILTERSUBMIT'); ?></button>
<button class="btn tip" type="button" onclick="document.getElements('.filter').set('value', '');this.form.submit();"><?php echo JText::_('COM_KUNENA_SYS_BUTTON_FILTERRESET'); ?></button>
</div>
<div class="btn-group pull-right hidden-phone">
<?php echo KunenaLayout::factory('pagination/limitbox')->set('pagination', $this->pagination); ?>
</div>
<div class="btn-group pull-right hidden-phone">
<label for="directionTable" class="element-invisible"><?php echo JText::_('JFIELD_ORDERING_DESC');?></label>
<select name="directionTable" id="directionTable" class="input-medium" onchange="Joomla.orderTable()">
<option value=""><?php echo JText::_('JFIELD_ORDERING_DESC');?></option>
<?php echo JHtml::_('select.options', $this->sortDirectionFields, 'value', 'text', $this->escape($this->listDirection));?>
</select>
</div>
<div class="btn-group pull-right">
<label for="sortTable" class="element-invisible"><?php echo JText::_('COM_KUNENA_SORT_TABLE_BY');?></label>
<select name="sortTable" id="sortTable" class="input-medium" onchange="Joomla.orderTable()">
<option value=""><?php echo JText::_('COM_KUNENA_SORT_TABLE_BY');?></option>
<?php echo JHtml::_('select.options', $this->sortFields, 'value', 'text', $this->listOrdering);?>
</select>
</div>
<div class="clearfix"></div>
</div>
<table class="table table-striped">
<thead>
<tr>
<th class="nowrap center" width="1%"><input type="checkbox" name="toggle" value="" onclick="checkAll(<?php echo count ( $this->items ); ?>);" /></th>
<th class="nowrap center" width="5%"><?php echo JText::_('COM_KUNENA_EMOTICON'); ?></th>
<th class="nowrap" width="8%"><?php echo JHtml::_('grid.sort', 'COM_KUNENA_EMOTICONS_CODE', 'code', $this->listDirection, $this->listOrdering ); ?></th>
<th class="nowrap"><?php echo JHtml::_('grid.sort', 'COM_KUNENA_EMOTICONS_URL', 'location', $this->listDirection, $this->listOrdering ); ?></th>
<th class="nowrap nowrap" width="1%">
<?php echo JHtml::_('grid.sort', 'JGRID_HEADING_ID', 'id', $this->listDirection, $this->listOrdering); ?>
</th>
</tr>
<tr>
<td class="center">
</td>
<td class="center">
</td>
<td class="nowrap center">
<label for="filter_code" class="element-invisible"><?php echo JText::_('COM_KUNENA_FIELD_LABEL_SEARCHIN') ?>:</label>
<input class="input-block-level input-filter filter" type="text" name="filter_code" id="filter_code" placeholder="<?php echo JText::_('COM_KUNENA_SYS_BUTTON_FILTERSUBMIT') ?>" value="<?php echo $this->filterCode; ?>" title="<?php echo JText::_('COM_KUNENA_SYS_BUTTON_FILTERSUBMIT') ?>" />
</td>
<td class="nowrap center">
<label for="filter_location" class="element-invisible"><?php echo JText::_('COM_KUNENA_FIELD_LABEL_SEARCHIN') ?>:</label>
<input class="input-block-level input-filter filter" type="text" name="filter_location" id="filter_location" placeholder="<?php echo JText::_('COM_KUNENA_SYS_BUTTON_FILTERSUBMIT') ?>" value="<?php echo $this->filterLocation; ?>" title="<?php echo JText::_('COM_KUNENA_SYS_BUTTON_FILTERSUBMIT') ?>" />
</td>
<td class="center">
</td>
</tr>
</thead>
<tfoot>
<tr>
<td colspan="14">
<?php echo KunenaLayout::factory('pagination/footer')->set('pagination', $this->pagination); ?>
</td>
</tr>
</tfoot>
<tbody>
<?php
$k = 1;
$i = 0;
if($this->pagination->total > 0) :
foreach ( $this->items as $id => $row ) {
$k = 1 - $k;
?>
<tr class="row<?php echo $k; ?>" align="center">
<td class="nowrap center">
<input type="checkbox" id="cb<?php echo $id; ?>" name="cid[]" value="<?php echo $this->escape($row->id); ?>" onclick="isChecked(this.checked);" />
</td>
<td class="center">
<a href="#edit" onclick="return listItemTask('cb<?php echo $id; ?>','edit')"><img src="<?php echo $this->escape( $this->ktemplate->getSmileyPath($row->location, true) ) ?>" alt="<?php echo $this->escape($row->location); ?>" border="0" /></a>
</td>
<td>
<?php echo $this->escape($row->code); ?>
</td>
<td>
<?php echo $this->escape($row->location); ?>
</td>
<td class="nowrap center">
<?php echo $this->escape($row->id); ?>
</td>
</tr>
<?php
}
else :
?>
<tr>
<td colspan="10">
<div class="well center filter-state">
<span><?php echo JText::_('COM_KUNENA_FILTERACTIVE'); ?>
<?php /*<a href="#" onclick="document.getElements('.filter').set('value', '');this.form.submit();return false;"><?php echo JText::_('COM_KUNENA_FIELD_LABEL_FILTERCLEAR'); ?></a> */?>
<?php if($this->filterActive || $this->pagination->total > 0) : ?>
<button class="btn" type="button" onclick="document.getElements('.filter').set('value', '');this.form.submit();"><?php echo JText::_('COM_KUNENA_FIELD_LABEL_FILTERCLEAR'); ?></button>
<?php else : ?>
<button class="btn btn-success" type="button" onclick="Joomla.submitbutton('add');"><?php echo JText::_('COM_KUNENA_NEW_SMILIE'); ?></button>
<?php endif; ?>
</span>
</div>
</td>
</tr>
<?php endif; ?>
</tbody>
</table>
</form>
</div>
<div id="tab2" class="tab-pane">
<form action="<?php echo KunenaRoute::_('administrator/index.php?option=com_kunena') ?>" id="uploadForm" method="post" enctype="multipart/form-data" >
<input type="hidden" name="view" value="smilies" />
<input type="hidden" name="task" value="smileyupload" />
<input type="hidden" name="boxchecked" value="0" />
<?php echo JHtml::_( 'form.token' ); ?>
<input type="file" id="file-upload" name="Filedata" />
<input type="submit" id="file-upload-submit" value="<?php echo JText::_('COM_KUNENA_A_START_UPLOAD'); ?>" />
</form>
</div>
</div>
</div>
<div class="pull-right small">
<?php echo KunenaVersion::getLongVersionHTML (); ?>
</div>
</div>
</div>
</div>
</div>