2015-06-01 17:00:02 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Icinga\Module\Director\Objects;
|
|
|
|
|
|
|
|
class IcingaUser extends IcingaObject
|
|
|
|
{
|
|
|
|
protected $table = 'icinga_user';
|
|
|
|
|
|
|
|
protected $defaultProperties = array(
|
|
|
|
'id' => null,
|
|
|
|
'object_name' => null,
|
|
|
|
'display_name' => null,
|
|
|
|
'email' => null,
|
|
|
|
'pager' => null,
|
|
|
|
'enable_notifications' => null,
|
|
|
|
'period_id' => null,
|
|
|
|
'zone_id' => null,
|
|
|
|
'object_type' => null,
|
|
|
|
);
|
2015-06-12 11:11:51 +02:00
|
|
|
|
|
|
|
protected function renderEnable_notifications()
|
|
|
|
{
|
|
|
|
return $this->renderBooleanProperty('enable_notifications');
|
|
|
|
}
|
2015-06-01 17:00:02 +02:00
|
|
|
}
|