mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2025-09-26 19:29:01 +02:00
32 lines
805 B
PHP
32 lines
805 B
PHP
<?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,
|
|
);
|
|
|
|
protected $supportsGroups = true;
|
|
|
|
protected $supportsCustomVars = true;
|
|
|
|
protected $supportsImports = true;
|
|
|
|
protected function renderEnable_notifications()
|
|
{
|
|
return $this->renderBooleanProperty('enable_notifications');
|
|
}
|
|
}
|