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

19 lines
518 B
PHP
Raw Normal View History

2011-05-31 14:51:15 +00:00
<?php defined('SYSPATH') or die('No direct access allowed.');
/**
* This class provides information on TSM Nodes.
*
* @package PTA
* @subpackage Domains
* @category Controllers
* @author Deon George
* @copyright (c) 2010 phpTSMadmin Development Team
* @license http://phptsmadmin.sf.net/license.html
*/
class Controller_Domain extends Controller_TemplateDefault_View {
protected $index_title = 'TSM Domains';
protected $detail_title = 'Information on Domain';
protected $orm = 'DOMAIN';
2011-05-31 14:51:15 +00:00
}
?>