%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /home1/lightco1/www/plugins/system/jsnframework/libraries/joomlashine/modules/tmpl/
Upload File :
Create Path :
Current File : //home1/lightco1/www/plugins/system/jsnframework/libraries/joomlashine/modules/tmpl/default.php

<?php
/**
 * @version    $Id$
 * @package    JSN_Framework
 * @author     JoomlaShine Team <support@joomlashine.com>
 * @copyright  Copyright (C) 2012 JoomlaShine.com. All Rights Reserved.
 * @license    GNU/GPL v2 or later http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Websites: http://www.joomlashine.com
 * Technical Support:  Feedback - http://www.joomlashine.com/contact-us/get-support.html
 */
// No direct access to this file
defined('_JEXEC') or die;

// Load assets
JHtml::addIncludePath(JPATH_ADMINISTRATOR . '/components/com_modules' . '/helpers/html');

if (JSNVersion::isJoomlaCompatible('3.0'))
{
	JHtml::_('behavior.tooltip');
}
else
{
	JHtml::_('behavior.framework');
}

JHtml::_('behavior.multiselect');

$listOrder = $this -> escape($this -> state -> get('list.ordering'));
$listDirn = $this -> escape($this -> state -> get('list.direction'));
$action = JFactory::getApplication() -> input -> getCmd('jsnaction', '');
$clientId = $this -> state -> get('filter.client_id');
$template = $this -> state -> get('filter.template');
$actionForm = isset($_SERVER['QUERY_STRING']) ? 'index.php?' . $_SERVER['QUERY_STRING'] : '';
?>
<div class="jsn-page-list">
	<div class="jsn-bootstrap">
		<form class="form-inline" action="<?php echo JRoute::_($actionForm); ?>" method="post" name="adminForm" id="adminForm">
			<div class="jsn-fieldset-filter">
				<fieldset>
					<div class="pull-left jsn-fieldset-search">
						<label class="filter-search-lbl" for="filter_search"><?php echo JText::_('JSEARCH_FILTER_LABEL'); ?></label>
						<input type="text" class="input-xlarge" name="filter_search" id="filter_search" <?php echo 'value="' . $this -> escape($this -> state -> get('filter.search')) . '" title="' . JText::_('COM_MODULES_MODULES_FILTER_SEARCH_DESC') . '"'; ?> />
						<button class="btn btn-icon" title="<?php echo JText::_('JSEARCH_FILTER_SUBMIT'); ?>" type="submit"><i class="icon-search"></i></button>
						<button class="btn btn-icon" type="button" onclick="document.id('filter_search').value = '';
								this.form.submit();" title="<?php echo JText::_('JSEARCH_FILTER_CLEAR'); ?>"><i class="icon-remove"></i></button>
					</div>
					<div class="pull-right">
						<button class="btn btn-icon filter-select" title="<?php echo JText::_('JSN_EXTFW_ITEMLIST_SELECT_FILTER'); ?>" onclick="return false;"><?php echo JText::_('JSN_EXTFW_ITEMLIST_SELECT_FILTER'); ?></button>
					</div>
					<div class="jsn-fieldset-filter-select popover hide">
						<div class="arrow"></div>
						<h3 class="popover-title"><?php echo JText::_('JSN_EXTFW_ITEMLIST_SELECT_FILTER'); ?></h3>
						<div class="popover-content">
							<select name="filter_template" class="inputbox" onchange="this.form.submit()">
								<option value=""><?php echo JText::_('JOPTION_SELECT_TEMPLATE'); ?></option>
								<?php echo JHtml::_('select.options', JHtml::_('modules.templates', $clientId,1), 'value', 'text', $template, true); ?>
							</select>
							<select name="filter_position" class="inputbox" onchange="this.form.submit()">
								<option value=""><?php echo JText::_('COM_MODULES_OPTION_SELECT_POSITION'); ?></option>
								<?php echo JHtml::_('select.options', ModulesHelper::getPositions($this -> state -> get('filter.client_id')), 'value', 'text', $this -> state -> get('filter.position')); ?>
							</select>
							<select name="filter_client_id" class="inputbox" onchange="this.form.submit()">
								<?php echo JHtml::_('select.options', ModulesHelper::getClientOptions(), 'value', 'text', $this -> state -> get('filter.client_id')); ?>
							</select>
							<select name="filter_state" class="inputbox" onchange="this.form.submit()">
								<option value=""><?php echo JText::_('JOPTION_SELECT_PUBLISHED'); ?></option>
								<?php echo JHtml::_('select.options', ModulesHelper::getStateOptions(), 'value', 'text', $this -> state -> get('filter.state')); ?>
							</select>
							<select name="filter_module" class="inputbox" onchange="this.form.submit()">
								<option value=""><?php echo JText::_('COM_MODULES_OPTION_SELECT_MODULE'); ?></option>
								<?php echo JHtml::_('select.options', ModulesHelper::getModules($this -> state -> get('filter.client_id')), 'value', 'text', $this -> state -> get('filter.module')); ?>
							</select>
							<select name="filter_access" class="inputbox" onchange="this.form.submit()">
								<option value=""><?php echo JText::_('JOPTION_SELECT_ACCESS'); ?></option>
								<?php echo JHtml::_('select.options', JHtml::_('access.assetgroups'), 'value', 'text', $this -> state -> get('filter.access')); ?>
							</select>
							<select name="filter_language" class="inputbox" onchange="this.form.submit()">
								<option value=""><?php echo JText::_('JOPTION_SELECT_LANGUAGE'); ?></option>
								<?php echo JHtml::_('select.options', JHtml::_('contentlanguage.existing', true, true), 'value', 'text', $this -> state -> get('filter.language')); ?>
							</select>
						</div>
					</div>
					<div class="clearbreak"></div>
				</fieldset>
			</div>
			<table class="table table-bordered table-striped table-popup">
				<thead>
					<tr>
						<?php
						$classHover = "jsnhover";

						if ($action != "update")
						{
							$classHover = "";
							?>
							<th width="1%">
								<input type="checkbox" name="checkall-toggle" class="checkall" />
							</th>
							<?php
						}
						?>
						<th class="title">
							<?php echo JHtml::_('grid.sort', 'JGLOBAL_TITLE', 'a.title', $listDirn, $listOrder); ?>
						</th>
						<th width="15%">
							<?php echo JHtml::_('grid.sort', 'COM_MODULES_HEADING_POSITION', 'position', $listDirn, $listOrder); ?>
						</th>
						<th width="10%" >
							<?php echo JHtml::_('grid.sort', 'COM_MODULES_HEADING_MODULE', 'name', $listDirn, $listOrder); ?>
						</th>
						<th width="10%">
							<?php echo JHtml::_('grid.sort', 'COM_MODULES_HEADING_PAGES', 'pages', $listDirn, $listOrder); ?>
						</th>
						<th width="1%" class="nowrap">
							<?php echo JHtml::_('grid.sort', 'JGRID_HEADING_ID', 'a.id', $listDirn, $listOrder); ?>
						</th>
					</tr>
				</thead>
				<tfoot>
					<tr>
						<td colspan="10">
							<?php echo str_replace('Joomla.submitform();', 'document.adminForm.submit();', $this -> pagination -> getListFooter()); ?>
						</td>
					</tr>
				</tfoot>
				<tbody>
					<?php
					foreach ($this -> items as $i => $item) :
						?>
						<tr <?php echo 'class="' . $classHover . '" data-title="' . $this -> escape($item -> title) . '" data-id="' . $item -> id . '"'; ?>>
							<?php
							if ($action != "update")
							{
								?>
								<td class="checkbox-items">
									<input type="checkbox" name="cid[]" <?php echo 'value="' . $item -> id . '" data-title="' . $this -> escape($item -> title) . '"'; ?>>
								</td>
								<?php
							}
							?>
							<td>
								<?php echo $this -> escape($item -> title); ?>
							</td>

							<td>
								<?php
								if ($item -> position)
								{
									echo $item -> position;
								} else
								{
									echo ':: ' . JText::_('JNONE') . ' ::';
								}
								?>
							</td>
							<td>
								<?php echo $item -> name; ?>
							</td>
							<td>
								<?php echo $item -> pages; ?>
							</td>
							<td>
								<?php echo (int) $item -> id; ?>
							</td>
						</tr>
					<?php endforeach; ?>
				</tbody>
			</table>
			<div>
				<input type="hidden" name="task" value="" />
				<input type="hidden" name="boxchecked" value="0" />
				<input type="hidden" name="filter_order" value="<?php echo $listOrder; ?>" />
				<input type="hidden" name="filter_order_Dir" value="<?php echo $listDirn; ?>" />
				<?php echo JHtml::_('form.token'); ?>
			</div>
		</form>
	</div>
</div>

Zerion Mini Shell 1.0