3 require_once( dirname(__FILE__
).'/base/baseobject.php' );
6 * Describes a single object from livestatus
8 abstract class Object_Model
extends BaseObject_Model
{
10 * Get the table of the current object
12 public function get_table() {
17 * Get a list of custom variables related to the object, if possible
19 public function get_custom_variables() {
24 * Get the current logged in username
26 public function get_current_user() {
27 return Auth
::instance()->get_user()->username
;