aboutsummaryrefslogtreecommitdiffstats
path: root/include/api.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-07-28 21:56:56 -0700
committerFriendika <info@friendika.com>2011-07-28 21:56:56 -0700
commitf47d582736ddf24528dd514850d4bed76783f589 (patch)
treee13e02534a64b656f8086dd1ab2ef32fdd7e9dd4 /include/api.php
parent8e30f6a2f43d5654a1ecab595be9d801dbc64b3c (diff)
downloadvolse-hubzilla-f47d582736ddf24528dd514850d4bed76783f589.tar.gz
volse-hubzilla-f47d582736ddf24528dd514850d4bed76783f589.tar.bz2
volse-hubzilla-f47d582736ddf24528dd514850d4bed76783f589.zip
api/statusnet/config.xml
Diffstat (limited to 'include/api.php')
-rw-r--r--include/api.php27
1 files changed, 27 insertions, 0 deletions
diff --git a/include/api.php b/include/api.php
index 4e5ea43bd..d7c0124d7 100644
--- a/include/api.php
+++ b/include/api.php
@@ -550,3 +550,30 @@
}
api_register_func('api/account/rate_limit_status','api_account_rate_limit_status',true);
+
+
+ function api_statusnet_config(&$a,$type) {
+ $name = $a->config['sitename'];
+ $server = $a->get_hostname();
+ $logo = $a->get_baseurl() . '/images/friendika-64.png';
+ $email = $a->config['admin_email'];
+ $closed = (($a->config['register_policy'] == REGISTER_CLOSED) ? 'true' : 'false');
+ $private = (($a->config['system']['block_public']) ? 'true' : 'false');
+ $textlimit = (($a->config['max_import_size']) ? $a->config['max_import_size'] : '200000');
+ $ssl = (($a->config['system']['have_ssl']) ? 'true' : 'false');
+ $sslserver = (($ssl === 'true') ? str_replace('http:','https:',$a->get_baseurl()) : '');
+
+ $config = array(
+ 'site' => array('name' => $name,'server' => $server, 'theme' => 'default', 'path' => '',
+ 'logo' => $logo, 'fancy' => 'true', 'language' => 'en', 'email' => $email, 'broughtby' => '',
+ 'broughtbyurl' => '', 'timezone' => 'UTC', 'closed' => $closed, 'inviteonly' => 'false',
+ 'private' => $private, 'textlimit' => $textlimit, 'sslserver' => $sslserver, 'ssl' => $ssl,
+ 'shorturllength' => '30'
+ ),
+ );
+
+ return api_apply_template('config', $type, array('$config' => $config));
+
+ }
+ api_register_func('api/statusnet/config','api_statusnet_config',true);
+