You've already forked SmartConfigurator
mirror of
https://github.com/ret-Phoenix/SmartConfigurator.git
synced 2026-06-16 00:57:28 +02:00
0ae5eda157
+ Навигация по модулю переписана на 1script + Заготовка для Навигация по метаданным на 1script
11 lines
163 B
PHP
11 lines
163 B
PHP
<?php
|
|
|
|
function Main() {
|
|
$data = file_get_contents('tmp/module.txt');
|
|
$newdata = strtoupper($data);
|
|
file_put_contents('tmp/module.txt',$newdata);
|
|
}
|
|
|
|
main();
|
|
|
|
?>
|