This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
phptsmadmin/application/classes/lnapp/breadcrumb.php

89 lines
2.1 KiB
PHP
Raw Normal View History

2011-01-17 05:33:55 +00:00
<?php defined('SYSPATH') or die('No direct access allowed.');
/**
* This class is for rendering a breadcrumb menu.
*
* @package lnApp
* @subpackage Page
* @category Helpers
* @author Deon George
* @copyright (c) 2010 Deon George
* @license http://dev.leenooks.net/license.html
*/
2012-11-26 05:57:18 +00:00
abstract class lnApp_Breadcrumb extends HTMLRender {
2011-01-17 05:33:55 +00:00
protected static $_data = array();
protected static $_spacer = ' &raquo; ';
protected static $_required_keys = array('body');
/**
* Set the breadcrumb path
*
* @param array Block attributes
*/
public static function set($path) {
if (is_string($path))
static::$_data['path'] = explode('/',$path);
2012-11-26 05:57:18 +00:00
elseif (is_array($path))
2011-01-17 05:33:55 +00:00
static::$_data['path'] = $path;
2012-11-26 05:57:18 +00:00
else
throw new Kohana_Exception('Path is not a string, nor an array');
2011-01-17 05:33:55 +00:00
}
/**
* Enable a friendly name to be used for a path
*/
2012-11-26 05:57:18 +00:00
public static function name($path,$name,$override=TRUE) {
if (isset(static::$_data['name'][$path]) AND ! $override)
return;
2011-01-17 05:33:55 +00:00
static::$_data['name'][$path] = $name;
}
2012-11-26 05:57:18 +00:00
/**
* Enable specifying the URL for a path
*/
public static function URL($path,$url,$override=TRUE) {
if (isset(static::$_data['url'][$path]) AND ! $override)
return;
static::$_data['url'][$path] = $url;
}
2011-01-17 05:33:55 +00:00
/**
* Return an instance of this class
*
* @return Breadcrumb
*/
public static function factory() {
return new Breadcrumb;
}
/**
* Render this Breadcrumb
*/
protected function render() {
2012-11-26 05:57:18 +00:00
$output = '<ul id="breadcrumb">';
$output .= '<li>'.HTML::anchor('/',_('Home')).'</li>';
2011-01-17 05:33:55 +00:00
2011-05-23 10:01:27 +00:00
$data = empty(static::$_data['path']) ? explode('/',preg_replace('/^\//','',Request::detect_uri())) : static::$_data['path'];
2011-01-17 05:33:55 +00:00
2012-11-26 05:57:18 +00:00
$c = count($data);
$i=0;
2011-01-17 05:33:55 +00:00
foreach ($data as $k => $v) {
2012-11-26 05:57:18 +00:00
$i++;
2011-01-17 05:33:55 +00:00
$p = join('/',array_slice($data,0,$k+1));
2012-11-26 05:57:18 +00:00
$output .= $i==$c ? '<li id="active">' : '<li>';
$output .= HTML::anchor(
(empty(static::$_data['url'][$p]) ? $p : static::$_data['url'][$p]),
(empty(static::$_data['name'][$p]) ? ucfirst($v) : static::$_data['name'][$p])
);
$output .= '</li>';
2011-01-17 05:33:55 +00:00
}
2012-11-26 05:57:18 +00:00
$output .= '</ul>';
2011-01-17 05:33:55 +00:00
return $output;
}
}
?>