Added volume reporting, improved overall configuration view

This commit is contained in:
Deon George
2012-11-30 13:03:26 +11:00
parent 4b51fc2727
commit d0095bb159
12 changed files with 217 additions and 248 deletions

View File

@@ -0,0 +1,18 @@
<?php defined('SYSPATH') or die('No direct access allowed.');
/**
* This class provides information on TSM Volumes.
*
* @package PTA
* @subpackage Volume
* @category Controllers
* @author Deon George
* @copyright (c) 2010 phpTSMadmin Development Team
* @license http://phptsmadmin.sf.net/license.html
*/
class Controller_Volume extends Controller_TemplateDefault_View {
protected $index_title = 'TSM Volumes';
protected $detail_title = 'Information on Volume';
protected $orm = 'VOLUME';
}
?>