blob: 99c22610f80735bb9b25fbade2dcd9b0e9997f7e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php
namespace Zotlabs\Module;
class Siteinfo_json extends \Zotlabs\Web\Controller {
function init() {
$data = get_site_info();
json_return_and_die($data);
}
}
|