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.
khosb/application/classes/Model/Module.php

52 lines
1.1 KiB
PHP
Raw Normal View History

2010-11-29 22:41:08 +00:00
<?php defined('SYSPATH') or die('No direct access allowed.');
/**
* OSB Application Module Model
*
* This module must remain in applications/ as it is used very early in the
* OSB initialisation.
*
* @package OSB
* @category Models
* @author Deon George
2013-03-19 22:35:19 +00:00
* @copyright (c) 2009-2013 Open Source Billing
* @license http://dev.osbill.net/license.html
2010-11-29 22:41:08 +00:00
*/
class Model_Module extends ORM_OSB {
2010-11-29 22:41:08 +00:00
// Relationships
protected $_has_many = array(
2011-07-14 09:09:03 +00:00
'module_method'=>array('far_key'=>'id'),
2010-11-29 22:41:08 +00:00
);
protected $_has_one = array(
'record_id'=>array('model'=>'Record_ID','far_key'=>'id'),
2010-11-29 22:41:08 +00:00
);
protected $_sorting = array(
'status'=>'DESC',
'name'=>'ASC',
);
protected $_display_filters = array(
'name'=>array(
array('strtoupper',array(':value')),
),
'status'=>array(
array('StaticList_YesNo::get',array(':value')),
),
2010-11-29 22:41:08 +00:00
);
2012-11-09 23:13:57 +00:00
/**
* Return an instance of this Module's Model
*
* @param $id PK of Model
*/
public function instance($id=NULL) {
return ORM::factory(ucwords($this->name),$id);
}
2012-11-09 23:13:57 +00:00
public function list_external() {
return $this->_where_active()->where('external','=',TRUE)->find_all();
}
2010-11-29 22:41:08 +00:00
}
?>