Your IP : 216.73.216.68


Current Path : /home/sunflowe/www2/vacancesfloride/libraries/gantry/facets/menu/
Upload File :
Current File : /home/sunflowe/www2/vacancesfloride/libraries/gantry/facets/menu/gantrymenuformatter.class.php

<?php
/**
 * @version   $Id: gantrymenuformatter.class.php 11319 2013-06-07 15:26:51Z steph $
 * @author    RocketTheme http://www.rockettheme.com
 * @copyright Copyright (C) 2007 - 2016 RocketTheme, LLC
 * @license   http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 only
 *
 * Gantry uses the Joomla Framework (http://www.joomla.org), a GNU/GPLv2 content management system
 *
 */

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

gantry_import('facets.menu.gantrymenutree');

/*
 * Created on Jan 16, 2009
 *
 * To change the template for this generated file go to
 * Window - Preferences - PHPeclipse - PHP - Code Templates
 */
class GantryMenuFormatter
{
	function format_tree(&$nav_menu_tree)
	{
		if ($nav_menu_tree->hasChildren()) {
			reset($nav_menu_tree->_children);
			while (list($key, $value) = each($nav_menu_tree->_children)) {
				$child_node  =& $nav_menu_tree->_children[$key];
				$menu_params =& $nav_menu_tree->_params;
				$this->format_subnodes($child_node, $menu_params);
			}
		}
	}

	function format(&$node, &$menu_params)
	{

	}

	function format_subnodes(&$node, &$menu_params)
	{

		$this->default_format($node, $menu_params);
		$this->format($node, $menu_params);
		if ($node->hasChildren()) {
			reset($node->_children);
			while (list($key, $value) = each($node->_children)) {
				$child_node =& $node->_children[$key];
				$this->format_subnodes($child_node, $menu_params);
			}
		}
	}

	function default_format(&$node, &$menu_params)
	{
		// Set up basic nav for target type
		if ($node->nav == 'new') {
			$node->target = "_blank";
		} else if ($node->nav == 'newnotool') {
			$attribs       = 'toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,' . $node->getParameter('window_open');
			$node->onclick = 'window.open(this.href,\'targetWindow\',\'' . $attribs . '\');return false;';
		}
	}
}