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/controller/tree.php

62 lines
1.3 KiB
PHP
Raw Normal View History

2011-01-17 05:33:55 +00:00
<?php defined('SYSPATH') or die('No direct access allowed.');
2011-05-23 10:01:27 +00:00
/**
* This class extends renders OSB menu tree.
*
* @package lnApp
* @subpackage Tree
* @category Controllers
* @author Deon George
* @copyright (c) 2010 Open Source Billing
* @license http://dev.osbill.net/license.html
*/
class Controller_Tree extends Controller_lnApp_Tree {
protected $auth_required = TRUE;
/**
* Draw the Tree Menu
*
* The incoming ID is either a Branch B_x or a Node N_x
* Where X is actually the module.
*
* @param id
*/
public function action_json($id=null,array $data=array()) {
// @todo Our menu options
array_push($data,array(
2011-05-31 14:51:15 +00:00
'id'=>'domain',
'name'=>'Domain Info',
2011-05-23 10:01:27 +00:00
'state'=>'none',
'attr_id'=>'1',
2011-05-31 14:51:15 +00:00
'attr_href'=>URL::Site('domain'),
2011-05-23 10:01:27 +00:00
));
2011-05-30 09:27:08 +00:00
array_push($data,array(
2011-05-31 14:51:15 +00:00
'id'=>'node',
'name'=>'Node Info',
2011-05-30 09:27:08 +00:00
'state'=>'none',
'attr_id'=>'1',
2011-05-31 14:51:15 +00:00
'attr_href'=>URL::Site('node'),
2011-05-30 09:27:08 +00:00
));
2011-05-27 08:44:44 +00:00
array_push($data,array(
'id'=>'activity',
'name'=>'Server Activity Gantt',
'state'=>'none',
'attr_id'=>'1',
2011-05-31 14:51:15 +00:00
'attr_href'=>URL::Site('server/gantt'),
2011-05-27 08:44:44 +00:00
));
2011-06-23 07:03:41 +00:00
array_push($data,array(
'id'=>'stgpool',
'name'=>'Storage Pool Info',
'state'=>'none',
'attr_id'=>'1',
'attr_href'=>URL::Site('stgpool'),
));
2011-05-23 10:01:27 +00:00
return parent::action_json($id,$data);
}
}
2011-01-17 05:33:55 +00:00
?>