mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2025-07-14 01:14:24 +02:00
15 lines
357 B
PHP
15 lines
357 B
PHP
<?php
|
|
|
|
use Icinga\Module\Director\ActionController;
|
|
|
|
class Director_ShowController extends ActionController
|
|
{
|
|
public function activitylogAction()
|
|
{
|
|
if ($id = $this->params->get('id')) {
|
|
$this->view->entry = $this->db()->fetchActivityLogEntry($id);
|
|
$this->view->title = $this->translate('Activity');
|
|
}
|
|
}
|
|
}
|