<?php defined('SYSPATH') or die('No direct access allowed.');

/**
 * This class overrides Kohana's URL
 *
 * @package    OSB/Modifications
 * @category   Classes
 * @category   Helpers
 * @author     Deon George
 * @copyright  (c) phpLDAPadmin Development Team
 * @license    http://dev.phpldapadmin.org/license.html
 */
class URL extends Kohana_URL {
	// Our method paths for different functions
	public static $method_directory = array(
		'user'=>'',
	);

	/**
	 * Wrapper to provide a URL::site() link based on function
	 */
	public static function link($dir,$src,$site=FALSE) {
		if (! $dir)
			return $src;

		if (! array_key_exists($dir,URL::$method_directory))
			throw new Kohana_Exception('Unknown directory :dir for :src',array(':dir'=>$dir,':src'=>$src));

		$x = URL::$method_directory[$dir].'/'.$src;

		return $site ? URL::site($x) : $x;
	}

	/**
	 * Function to reveal the real directory for a URL
	 */
	public static function dir($dir) {
		// Quick check if we can do something here
		if (! in_array(strtolower($dir),URL::$method_directory))
			return $dir;

		// OK, we can, find it.
		foreach (URL::$method_directory as $k=>$v)
			if (strtolower($dir) == $v)
				return ucfirst($k);

		// If we get here, we didnt have anything.
		return $dir;
	}
}
?>