define('INSTALLDIR', realpath(dirname(__FILE__) . '/..'));
-$shortoptions = 'i:n:';
-$longoptions = array('id=', 'nickname=');
+$shortoptions = 'i:n:o';
+$longoptions = array('id=', 'nickname=', 'owner');
$helptext = <<<END_OF_USERROLE_HELP
command.php [options] [command line]
-i --id ID of the user
-n --nickname nickname of the user
+ -o --owner use the site owner
END_OF_USERROLE_HELP;
require_once INSTALLDIR.'/scripts/commandline.inc';
-
-
function interpretCommand($user, $body)
{
$inter = new CommandInterpreter();
}
}
-
-
if (have_option('i', 'id')) {
$id = get_option_value('i', 'id');
$user = User::staticGet('id', $id);
print "Can't find user with nickname '$nickname'\n";
exit(1);
}
+} else if (have_option('o', 'owner')) {
+ $user = User::siteOwner();
+ if (empty($user)) {
+ print "Site has no owner.\n";
+ exit(1);
+ }
} else {
print "You must provide either an ID or a nickname.\n\n";
print $helptext;