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.

20 lines
428 B
PHP
Raw Normal View History

2011-09-27 21:22:13 +10:00
<?php defined('SYSPATH') or die('No direct access allowed.');
/**
* This class supports Domain TLD
2011-09-27 21:22:13 +10:00
*
2013-03-20 09:35:19 +11:00
* @package Domain
2011-09-27 21:22:13 +10:00
* @category Models
* @author Deon George
2013-03-20 09:35:19 +11:00
* @copyright (c) 2009-2013 Open Source Billing
2011-09-27 21:22:13 +10:00
* @license http://dev.osbill.net/license.html
*/
2012-11-10 10:13:57 +11:00
class Model_Domain_Tld extends ORM_OSB {
2011-09-27 21:22:13 +10:00
protected $_display_filters = array(
'name'=>array(
array('strtoupper',array(':value')),
2011-09-27 21:22:13 +10:00
),
);
}
?>