20 lines
428 B
PHP
20 lines
428 B
PHP
<?php defined('SYSPATH') or die('No direct access allowed.');
|
|
|
|
/**
|
|
* This class supports Domain TLD
|
|
*
|
|
* @package Domain
|
|
* @category Models
|
|
* @author Deon George
|
|
* @copyright (c) 2009-2013 Open Source Billing
|
|
* @license http://dev.osbill.net/license.html
|
|
*/
|
|
class Model_Domain_Tld extends ORM_OSB {
|
|
protected $_display_filters = array(
|
|
'name'=>array(
|
|
array('strtoupper',array(':value')),
|
|
),
|
|
);
|
|
}
|
|
?>
|