mirror of
https://github.com/YunoHost-Apps/rainloop_ynh.git
synced 2024-09-03 20:16:18 +02:00
805bedc606
- correction config mysql - correction install - correction gestion domaine
27 lines
No EOL
557 B
PHP
27 lines
No EOL
557 B
PHP
<?php
|
|
|
|
function arguments($argv) {
|
|
$_ARG = array();
|
|
foreach ($argv as $arg) {
|
|
if (ereg('--([^=]+)=(.*)',$arg,$reg)) {
|
|
$_ARG[$reg[1]] = $reg[2];
|
|
} elseif(ereg('^-([a-zA-Z0-9])',$arg,$reg)) {
|
|
$_ARG[$reg[1]] = 'true';
|
|
} else {
|
|
$_ARG['input'][]=$arg;
|
|
}
|
|
}
|
|
return $_ARG;
|
|
}
|
|
|
|
// get args:
|
|
$args = arguments($argv);
|
|
|
|
$_ENV['RAINLOOP_INCLUDE_AS_API'] = true;
|
|
include $args['index'];
|
|
|
|
$oConfig = \RainLoop\Api::Config();
|
|
$oConfig->SetPassword($args['password']);
|
|
echo $oConfig->Save() ? 'Admin password updated' : 'Admin password not updated';
|
|
|
|
?>
|