friendica/mod/api.php

40 lines
1.0 KiB
PHP
Raw Normal View History

2011-02-15 06:24:21 -05:00
<?php
2018-01-21 13:33:59 -05:00
/**
2021-03-29 02:40:20 -04:00
* @copyright Copyright (C) 2010-2021, the Friendica project
*
* @license GNU AGPL version 3 or any later version
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
2018-01-21 13:33:59 -05:00
*/
use Friendica\App;
use Friendica\DI;
require_once __DIR__ . '/../include/api.php';
2011-02-15 06:24:21 -05:00
function api_post(App $a)
{
2021-08-08 15:30:21 -04:00
if (!$a->isLoggedIn()) {
2020-07-23 02:25:01 -04:00
notice(DI::l10n()->t('Permission denied.'));
2011-10-26 11:15:36 -04:00
return;
}
}
function api_content(App $a)
{
2011-02-15 06:24:21 -05:00
echo api_call($a);
2018-12-26 00:40:12 -05:00
exit();
2011-02-15 06:24:21 -05:00
}