35 lines
625 B
PHP
35 lines
625 B
PHP
<?php
|
|
|
|
use GlpiPlugin\Urbackup\Profile;
|
|
use GlpiPlugin\Urbackup\Server;
|
|
use Html;
|
|
use Search;
|
|
|
|
if (!defined('GLPI_ROOT')) {
|
|
define('GLPI_ROOT', dirname(__DIR__, 4));
|
|
}
|
|
|
|
include_once GLPI_ROOT . "/inc/includes.php";
|
|
|
|
if (!Profile::canCurrentUser(READ)) {
|
|
Html::displayRightError();
|
|
}
|
|
|
|
Html::header(
|
|
'UrBackup Servers',
|
|
'',
|
|
'admin',
|
|
'GlpiPlugin\Urbackup\Server'
|
|
);
|
|
|
|
Search::show('GlpiPlugin\Urbackup\Server', [
|
|
'is_deleted' => 0,
|
|
'massiveaction' => true,
|
|
'start' => 0,
|
|
'additional_actions' => [
|
|
'view' => __('View', 'urbackup'),
|
|
],
|
|
]);
|
|
|
|
Html::footer();
|