24 lines
505 B
PHP
24 lines
505 B
PHP
|
<?php
|
||
|
|
||
|
namespace Icinga\Module\Director\Objects;
|
||
|
|
||
|
use Icinga\Module\Director\Data\Db\DbObject;
|
||
|
|
||
|
class DirectorDatafield extends DbObject
|
||
|
{
|
||
|
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,
|
||
|
);
|
||
|
}
|