blob: 3415dd331c4c4be02d78de6b78966c83c4e664c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php
namespace Icinga\Module\Director\Web;
use Icinga\Web\Window as WebWindow;
class Window extends WebWindow
{
public function __construct($id)
{
parent::__construct(\preg_replace('/_.+$/', '', $id));
}
}
|