Файловый менеджер - Редактировать - /home/lmsyaran/public_html/khademsharif.atwh.ir/fields.tar
Назад
filters.php 0000644 00000001602 15116774311 0006732 0 ustar 00 <?php /** * @package HikaShop for Joomla! * @version 2.2.3 * @author hikashop.com * @copyright (C) 2010-2013 HIKARI SOFTWARE. All rights reserved. * @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html */ defined('_JEXEC') or die('Restricted access'); ?><?php class JFormFieldFilters extends JFormField { var $type = 'help'; function getInput() { JHTML::_('behavior.modal','a.modal'); $link = 'index.php?option=com_hikashop&tmpl=component&ctrl=choose&task=filters&values='.$this->value.'&control='; $text = '<input class="inputbox" id="filters" name="'.$this->name.'" type="text" size="20" value="'.$this->value.'">'; $text .= '<a class="modal" id="linkfilters" title="Filters" href="'.$link.'" rel="{handler: \'iframe\', size: {x: 650, y: 375}}"><button class="btn" onclick="return false">Select</button></a>'; return $text; } } hikanamebox.php 0000644 00000002471 15116774311 0007555 0 ustar 00 <?php /** * @package HikaShop for Joomla! * @version 4.4.1 * @author hikashop.com * @copyright (C) 2010-2021 HIKARI SOFTWARE. All rights reserved. * @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html */ defined('_JEXEC') or die('Restricted access'); ?><?php class JFormFieldHikanamebox extends JFormField { protected $type = 'hikanamebox'; protected function getInput() { if(!defined('DS')) define('DS', DIRECTORY_SEPARATOR); if(!defined('HIKASHOP_COMPONENT') && !include_once(rtrim(JPATH_ADMINISTRATOR,DS).DS.'components'.DS.'com_hikashop'.DS.'helpers'.DS.'helper.php')) return 'This module can not work without the Hikashop Component'; $nameboxType = hikashop_get('type.namebox'); $namebox_type = 'product'; if(isset($this->element['namebox_type'])) $namebox_type = (string)$this->element['namebox_type']; $namebox_mode = hikashopNameboxType::NAMEBOX_SINGLE; if($this->multiple) { $namebox_mode = hikashopNameboxType::NAMEBOX_MULTIPLE; if(!is_array($this->value)) $this->value = explode(',', $this->value); } $text = $nameboxType->display( $this->name, $this->value, $namebox_mode, $namebox_type, array( 'delete' => true, 'default_text' => '<em>'.JText::_('HIKA_NONE').'</em>' ) ); return $text; } } hikashopmodule.php 0000644 00000002334 15116774311 0010301 0 ustar 00 <?php /** * @package HikaShop for Joomla! * @version 2.2.3 * @author hikashop.com * @copyright (C) 2010-2013 HIKARI SOFTWARE. All rights reserved. * @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html */ defined('_JEXEC') or die('Restricted access'); ?><?php class JFormFieldHikashopmodule extends JFormField{ protected $type = 'hikashopmodule'; protected function getInput() { if(!defined('DS')) define('DS', DIRECTORY_SEPARATOR); if(!function_exists('hikashop_config') && !include_once(rtrim(JPATH_ADMINISTRATOR,DS).DS.'components'.DS.'com_hikashop'.DS.'helpers'.DS.'helper.php')){ return 'This module can not work without the Hikashop Component'; } $config =& hikashop_config(); if(!hikashop_isAllowed($config->get('acl_modules_manage','all'))){ return 'Access to the HikaShop options of the modules is restricted'; } $id = JRequest::getInt('id'); if(!empty($id)){ $text = '<a style="float:left;" title="'.JText::_('HIKASHOP_OPTIONS').'" href="'.JRoute::_('index.php?option=com_hikashop&ctrl=modules&fromjoomla=1&task=edit&cid[]='.$id).'" >'.JText::_('HIKASHOP_OPTIONS').'</a>'; }else{ $text = JText::_('HIKASHOP_OPTIONS_EDIT'); } return $text; } } index.html 0000644 00000000032 15116774311 0006542 0 ustar 00 <html><body></body></html>