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/Stgpool.php

19 lines
546 B
PHP
Raw Normal View History

2011-06-23 07:03:41 +00:00
<?php defined('SYSPATH') or die('No direct access allowed.');
/**
* This class provides information on TSM Storage Pools.
*
* @package PTA
* @subpackage Storage Pools
* @category Controllers
* @author Deon George
* @copyright (c) 2010 phpTSMadmin Development Team
* @license http://phptsmadmin.sf.net/license.html
*/
class Controller_Stgpool extends Controller_TemplateDefault_View {
protected $index_title = 'TSM Storage Pools';
protected $detail_title = 'Information on Storage Pool';
protected $orm = 'STGPOOL';
2011-06-23 07:03:41 +00:00
}
?>