Friendica Communications Platform
(please note that this is a clone of the repository at github, issues are handled there)
https://friendi.ca
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
659 B
34 lines
659 B
#!/usr/bin/env php |
|
<?php |
|
|
|
// Red config utility |
|
|
|
require_once('include/cli_startup.php'); |
|
|
|
cli_startup(); |
|
|
|
if($argc > 3) { |
|
set_config($argv[1],$argv[2],$argv[3]); |
|
echo "config[{$argv[1]}][{$argv[2]}] = " . get_config($argv[1],$argv[2]) . "\n"; |
|
} |
|
|
|
if($argc == 3) { |
|
echo "config[{$argv[1]}][{$argv[2]}] = " . get_config($argv[1],$argv[2]) . "\n"; |
|
} |
|
|
|
if($argc == 2) { |
|
load_config($argv[1]); |
|
foreach($a->config[$argv[1]] as $k => $x) { |
|
echo "config[{$argv[1]}][{$k}] = " . $x . "\n"; |
|
} |
|
} |
|
|
|
if($argc == 1) { |
|
$r = q("select * from config where 1"); |
|
if($r) { |
|
foreach($r as $rr) { |
|
echo "config[{$rr['cat']}][{$rr['k']}] = " . $rr['v'] . "\n"; |
|
} |
|
} |
|
} |
|
|
|
|