2015-07-23 11:45:07 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Icinga\Module\Director\Objects;
|
|
|
|
|
2016-02-17 22:02:28 +01:00
|
|
|
use Icinga\Module\Director\Data\Db\DbObjectWithSettings;
|
2015-07-23 11:45:07 +02:00
|
|
|
|
2016-02-17 22:02:28 +01:00
|
|
|
class ImportRowModifier extends DbObjectWithSettings
|
2015-07-23 11:45:07 +02:00
|
|
|
{
|
|
|
|
protected $table = 'import_row_modifier';
|
|
|
|
|
|
|
|
protected $keyName = 'id';
|
|
|
|
|
|
|
|
protected $autoincKeyName = 'id';
|
|
|
|
|
|
|
|
protected $defaultProperties = array(
|
2016-02-17 22:02:28 +01:00
|
|
|
'id' => null,
|
|
|
|
'source_id' => null,
|
|
|
|
'property_name' => null,
|
|
|
|
'provider_class' => null,
|
|
|
|
'priority' => null,
|
2015-07-23 11:45:07 +02:00
|
|
|
);
|
|
|
|
|
2016-02-17 22:02:28 +01:00
|
|
|
protected $settingsTable = 'import_row_modifier_setting';
|
2015-07-23 11:45:07 +02:00
|
|
|
|
2016-02-17 22:02:28 +01:00
|
|
|
protected $settingsRemoteId = 'row_modifier_id';
|
2015-07-23 11:45:07 +02:00
|
|
|
}
|