#!/usr/bin/env php . /** * @package GNUsocial * @copyright 2011 StatusNet, Inc. * @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later */ define('INSTALLDIR', dirname(__DIR__, 3)); define('PUBLICDIR', INSTALLDIR . DIRECTORY_SEPARATOR . 'public'); $helptext = << Prints site information for the domain given END_OF_SITEFORDOMAIN_HELP; require_once INSTALLDIR.'/scripts/commandline.inc'; $domain = DomainStatusNetworkPlugin::toDomain($args[0]); $sn = DomainStatusNetworkPlugin::siteForDomain($domain); if (empty($sn)) { exit(1); } print $sn->nickname."\n"; exit(0);