Your IP : 216.73.216.50


Current Path : /proc/1908984/root/proc/self/root/proc/self/root/proc/2404962/root/tmp/
Upload File :
Current File : //proc/1908984/root/proc/self/root/proc/self/root/proc/2404962/root/tmp/phppuGm8p

<?php
/**
 * @version    3.6.x
 * @package    Disqus Comments (for Joomla)
 * @author     JoomlaWorks - http://www.joomlaworks.net
 * @copyright  Copyright (c) 2006 - 2016 JoomlaWorks Ltd. All rights reserved.
 * @license    GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
 */

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

class DisqusHelper
{

	// Path overrides for MVC templating
	public static function getTemplatePath($pluginName, $file)
	{

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

		if (file_exists(JPATH_SITE.'/templates/'.$mainframe->getTemplate().'/html/'.$pluginName.'/'.$file))
		{
			$p->file = JPATH_SITE.'/templates/'.$mainframe->getTemplate().'/html/'.$pluginName.'/'.$file;
			$p->http = JURI::root(true).'/templates/'.$mainframe->getTemplate().'/html/'.$pluginName.'/'.$file;
		}
		else
		{
			if (version_compare(JVERSION, '1.6.0', 'ge'))
			{
				// Joomla! 1.6+
				$p->file = JPATH_SITE.'/plugins/'.$pluginGroup.'/'.$pluginName.'/'.$pluginName.'/tmpl/'.$file;
				$p->http = JURI::root(true).'/plugins/'.$pluginGroup.'/'.$pluginName.'/'.$pluginName.'/tmpl/'.$file;
			}
			else
			{
				// Joomla! 1.5
				$p->file = JPATH_SITE.'/plugins/'.$pluginGroup.'/'.$pluginName.'/tmpl/'.$file;
				$p->http = JURI::root(true).'/plugins/'.$pluginGroup.'/'.$pluginName.'/tmpl/'.$file;
			}
		}
		return $p;
	}

} // end class
<?php
/**
 * @version    3.6.x
 * @package    Disqus Comments (for Joomla)
 * @author     JoomlaWorks - http://www.joomlaworks.net
 * @copyright  Copyright (c) 2006 - 2016 JoomlaWorks Ltd. All rights reserved.
 * @license    GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
 */

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

// Create a menu item selector
if (version_compare(JVERSION, '1.6.0', 'ge'))
{
	// Import the com_menus helper
	require_once  realpath(JPATH_ADMINISTRATOR.'/components/com_menus/helpers/menus.php');

	class JFormFieldMenus extends JFormField
	{

		var $type = 'menus';

		function getInput()
		{

			// Initialize variables.
			$groups = array();
			$menus = array();

			// Initialize some field attributes.
			$menuType = (string)$this->element['menu_type'];
			$published = $this->element['published'] ? explode(',', (string)$this->element['published']) : array();
			$disable = $this->element['disable'] ? explode(',', (string)$this->element['disable']) : array();

			// Get the menu items.
			$items = MenusHelper::getMenuLinks($menuType, 0, 0, $published);

			// Build group for a specific menu type.
			if ($menuType)
			{
				// Initialize the group.
				$groups[$menuType] = array();

				// Build the options array.
				foreach ($items as $link)
				{
					$groups[$menuType][] = JHtml::_('select.option', $link->value, $link->text, 'value', 'text', in_array($link->type, $disable));
				}
			}

			// Build groups for all menu types.
			else
			{
				// Build the groups arrays.
				foreach ($items as $menu)
				{
					// Initialize the group.
					$groups[$menu->menutype] = array();

					// Build the options array.
					foreach ($menu->links as $link)
					{
						$groups[$menu->menutype][] = JHtml::_('select.option', $link->value, $link->text, 'value', 'text', in_array($link->type, $disable));
					}
				}
			}

			foreach ($groups as $group => $links)
			{
				$menus[] = JHtml::_('select.optgroup', $group);
				foreach ($links as $link)
				{
					$menus[] = $link;
				}
				$menus[] = JHtml::_('select.optgroup', $group);
			}

			// Create the 'all menus' listing
			$temp = new stdClass;
			$temp->value = '';
			$temp->text = JText::_('JW_DISQUS_SELECT_ALL_MENUS');

			// Merge the above
			array_unshift($menus, $temp);

			// Output
			$output = JHTML::_('select.genericlist', $menus, $this->name.'[]', 'class="inputbox" style="width:220px;" multiple="multiple" size="12"', 'value', 'text', $this->value);
			return $output;
		}

	}

}
else
{

	class JElementMenus extends JElement
	{

		var $_name = 'menus';

		function fetchElement($name, $value, &$node, $control_name)
		{

			$document = JFactory::getDocument();
			$menus = array();

			// Create the 'all menus' listing
			$temp->value = '';
			$temp->text = JText::_("JW_DISQUS_SELECT_ALL_MENUS");

			// Grab all the menus, grouped
			$menus = JHTML::_('menu.linkoptions');

			// Merge the above
			array_unshift($menus, $temp);

			// Output
			$output = JHTML::_('select.genericlist', $menus, ''.$control_name.'['.$name.'][]', 'class="inputbox" style="width:90%;" multiple="multiple" size="12"', 'value', 'text', $value);

			return $output;
		}

	}

}