connessione con hardware in assets

This commit is contained in:
test
2026-08-07 14:27:33 +02:00
parent 7c6e244155
commit f575d8cb05
33 changed files with 3489 additions and 1608 deletions
+2 -19
View File
@@ -14,6 +14,8 @@ if (!defined('GLPI_ROOT')) {
die(__('Sorry. You cannot access this file directly.', 'urbackup'));
}
require_once __DIR__ . '/install.php';
/**
* Uninstall plugin.
*
@@ -37,22 +39,3 @@ function plugin_urbackup_uninstall_process(): bool
return true;
}
/**
* Drop a plugin table through Migration.
*
* @param Migration $migration Migration instance
* @param string $table Table name
*
* @return void
*/
function plugin_urbackup_migration_drop_table(Migration $migration, $table): void
{
global $DB;
if (!$DB->tableExists($table)) {
return;
}
$migration->dropTable($table);
}