icingadb-web/library/Icingadb/Model/NotesUrl.php
Eric Lippmann 272e791390 License source files as GPL-3.0-or-later
Add SPDX license headers and mark source files as GPL-3.0-or-later to
preserve the option to relicense under later GPL versions.
2026-03-11 14:03:05 +01:00

68 lines
1.5 KiB
PHP

<?php
// SPDX-FileCopyrightText: 2019 Icinga GmbH <https://icinga.com>
// SPDX-License-Identifier: GPL-3.0-or-later
namespace Icinga\Module\Icingadb\Model;
use Icinga\Module\Icingadb\Model\Behavior\ActionAndNoteUrl;
use ipl\Orm\Behavior\Binary;
use ipl\Orm\Behaviors;
use Icinga\Module\Icingadb\Common\Model;
use ipl\Orm\Relations;
/**
* @property string $id
* @property string[] $notes_url
* @property string $environment_id
*/
class NotesUrl extends Model
{
public function getTableName()
{
return 'notes_url';
}
public function getKeyName()
{
return 'id';
}
public function getColumns()
{
return [
'notes_url',
'environment_id'
];
}
public function getColumnDefinitions()
{
return [
'notes_url' => t('Notes Url'),
'environment_id' => t('Environment Id')
];
}
public function createBehaviors(Behaviors $behaviors)
{
$behaviors->add(new ActionAndNoteUrl(['notes_url']));
$behaviors->add(new Binary([
'id',
'environment_id'
]));
}
public function createRelations(Relations $relations)
{
$relations->belongsTo('environment', Environment::class);
$relations->hasMany('host', Host::class)
->setCandidateKey('id')
->setForeignKey('notes_url_id');
$relations->hasMany('service', Service::class)
->setCandidateKey('id')
->setForeignKey('notes_url_id');
}
}