2015-07-03 13:17:05 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Icinga\Module\Director\Objects;
|
|
|
|
|
2016-02-17 21:23:24 +01:00
|
|
|
use Icinga\Module\Director\Data\Db\DbObjectWithSettings;
|
2015-07-03 13:17:05 +02:00
|
|
|
|
2016-02-17 21:23:24 +01:00
|
|
|
class DirectorDatafield extends DbObjectWithSettings
|
2015-07-03 13:17:05 +02:00
|
|
|
{
|
|
|
|
protected $table = 'director_datafield';
|
|
|
|
|
|
|
|
protected $keyName = 'id';
|
|
|
|
|
|
|
|
protected $autoincKeyName = 'id';
|
|
|
|
|
|
|
|
protected $defaultProperties = array(
|
|
|
|
'id' => null,
|
|
|
|
'varname' => null,
|
|
|
|
'caption' => null,
|
|
|
|
'description' => null,
|
|
|
|
'datatype' => null,
|
|
|
|
'format' => null,
|
|
|
|
);
|
2015-07-28 12:01:55 +02:00
|
|
|
|
2016-02-17 21:23:24 +01:00
|
|
|
protected $settingsTable = 'director_datafield_setting';
|
|
|
|
|
|
|
|
protected $settingsRemoteId = 'datafield_id';
|
2015-07-03 13:17:05 +02:00
|
|
|
}
|