mirror of
https://github.com/unraid/webgui.git
synced 2026-01-13 05:00:06 -06:00
32 lines
985 B
PHP
Executable File
32 lines
985 B
PHP
Executable File
#!/usr/bin/php
|
|
<?PHP
|
|
function startsWith($haystack, $needle) {
|
|
if ( !is_string($haystack) || ! is_string($needle) ) return false;
|
|
return $needle === "" || strripos($haystack, $needle, -strlen($haystack)) !== FALSE;
|
|
}
|
|
|
|
$xmlFiles = glob("/boot/config/plugins/dockerMan/templates-user/*.xml");
|
|
|
|
foreach ($xmlFiles as $file) {
|
|
unset($changeFlag);
|
|
$xml = simplexml_load_file($file);
|
|
if ( ! $xml ) {
|
|
continue;
|
|
}
|
|
|
|
foreach ($xml->Config as $id => $config) {
|
|
if ( startsWith((string)$config->attributes()->Description,"Container ".(string)$config->attributes()->Type) ) {
|
|
$config->attributes()->Description = "";
|
|
$changeFlag = true;
|
|
}
|
|
}
|
|
if ( $changeFlag ) {
|
|
copy($file,"$file.bak");
|
|
$dom = new DOMDocument('1.0');
|
|
$dom->preserveWhiteSpace = false;
|
|
$dom->formatOutput = true;
|
|
$dom->loadXML($xml->asXML());
|
|
file_put_contents($file,$dom->saveXML());
|
|
}
|
|
}
|
|
?>
|