0byt3m1n1-V2
Path:
/
home
/
a
/
c
/
a
/
academiac
/
www
/
[
Home
]
File: helper.php.tar
home/academiac/www/modules/mod_search/helper.php 0000644 00000001305 15137211715 0015755 0 ustar 00 <?php /** * @package Joomla.Site * @subpackage mod_search * @copyright Copyright (C) 2005 - 2014 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ // no direct access defined('_JEXEC') or die; /** * @package Joomla.Site * @subpackage mod_search * @since 1.5 */ class modSearchHelper { /** * Display the search button as an image. * * @param string $button_text The alt text for the button. * * @return string The HTML for the image. * @since 1.5 */ public static function getSearchImage($button_text) { $img = JHtml::_('image', 'searchButton.gif', $button_text, NULL, true, true); return $img; } } home/academiac/www/modules/mod_virtuemart_manufacturer/helper.php 0000604 00000002243 15137212375 0021467 0 ustar 00 <?php defined('_JEXEC') or die( 'Direct Access to '.basename(__FILE__).' is not allowed.' ); /* * Module Helper * * @package VirtueMart * @copyright (C) 2010 - Patrick Kohl * @ Email: cyber__fr|at|hotmail.com * * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL * VirtueMart is Free Software. * VirtueMart comes with absolute no warranty. * * www.virtuemart.net */ if (!class_exists( 'VmConfig' )) require(JPATH_ADMINISTRATOR . DS . 'components' . DS . 'com_virtuemart'.DS.'helpers'.DS.'config.php'); VmConfig::loadConfig(); if (!class_exists( 'VmImage' )) require(JPATH_ADMINISTRATOR . DS . 'components' . DS . 'com_virtuemart'.DS.'helpers'.DS.'image.php'); if(!class_exists('TableMedias')) require(JPATH_VM_ADMINISTRATOR.DS.'tables'.DS.'medias.php'); if(!class_exists('TableManufacturer_medias')) require(JPATH_VM_ADMINISTRATOR.DS.'tables'.DS.'manufacturer_medias.php'); if(!class_exists('TableManufacturers')) require(JPATH_VM_ADMINISTRATOR.DS.'tables'.DS.'manufacturers.php'); if (!class_exists( 'VirtueMartModelManufacturer' )){ JLoader::import( 'manufacturer', JPATH_ADMINISTRATOR . DS . 'components' . DS . 'com_virtuemart' . DS . 'models' ); } ?>