PATH:
home
/
centosnipponia
/
public_html
/
nipponiacom2
/
modules
/
mod_djc2producers
/
tmpl
<?php /** * @version $Id: default.php 373 2015-02-10 08:41:53Z michal $ * @package DJ-Catalog2 * @copyright Copyright (C) 2012 DJ-Extensions.com LTD, All rights reserved. * @license http://www.gnu.org/licenses GNU/GPL * @author url: http://dj-extensions.com * @author email contact@dj-extensions.com * @developer Michal Olczyk - michal.olczyk@design-joomla.eu * * DJ-Catalog2 is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * DJ-Catalog2 is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with DJ-Catalog2. If not, see <http://www.gnu.org/licenses/>. * */ defined ('_JEXEC') or die('Restricted access'); $task = ($params->get('type', '0') == '0') ? 'search' : 'producersearch'; ?> <div class="mod_djc2producers"> <form action="index.php" method="post" name="producersForm" id="producersForm" > <input type="hidden" name="option" value="com_djcatalog2" /> <?php if ($order) { ?> <input type="hidden" name="order" value="<?php echo $order; ?>" /> <?php } ?> <?php if ($orderDir) {?> <input type="hidden" name="dir" value="<?php echo $orderDir; ?>" /> <?php } ?> <input type="hidden" name="cid" value="<?php echo $cid; ?>" /> <input type="hidden" name="task" value="<?php echo $task; ?>" /> <?php $options = array(); $options[] = JHTML::_('select.option', 0,JText::_('MOD_DJC2PRODUCERS_CHOOSE_PRODUCER') ); foreach($producers as $producer){ $options[] = JHTML::_('select.option', $producer['id'], $producer['name']); } echo JHTML::_('select.genericlist', $options, 'pid', 'class="inputbox mod_djc2producers_list" onchange="producersForm.submit()"', 'value', 'text', $prod_id, 'mod_djc2producers_pid'); ?> <input type="submit" style="display: none;"/> </form> </div>
[+]
..
[-] default.php
[edit]
[-] index.html
[edit]
[-] list.php
[edit]
[-] .htaccess.disabled
[edit]