Your IP : 216.73.216.240


Current Path : /home/juvelize/www/plugins/content/uyguntabs/uyguntabs/includes/
Upload File :
Current File : /home/juvelize/www/plugins/content/uyguntabs/uyguntabs/includes/helper.php

<?php
// Uyguntabs Copyright 2012
// Version 1.0
// GNU GPL based on Tabs and Sliders joomlaworks.net

// no direct access
defined( '_JEXEC' ) or die( 'Restricted access' );

class UyguntabsHelper {

	// Path overrides for MVC templating
	function getTemplatePath($pluginName,$folder){

		$mainframe = &JFactory::getApplication();
		$p = new JObject;
		$pluginGroup = 'content';

		if(file_exists(JPATH_SITE.'templates'.$mainframe->getTemplate().'html'.$pluginName))
				$p->folder = JPATH_SITE.'plugins'.$pluginGroup.$pluginName.$pluginName.'tmpl'.$folder;
				$p->http = JURI::root(true).'/plugins/'.$pluginGroup.'/'.$pluginName.'/'.$pluginName.'/tmpl/'.$folder;
		return $p;
	}

} // end class