2018-09-20 14:44:40 +02:00
|
|
|
<?php
|
2020-02-09 16:34:23 +01:00
|
|
|
/**
|
|
|
|
* @copyright Copyright (C) 2020, Friendica
|
|
|
|
*
|
|
|
|
* @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/>.
|
|
|
|
*
|
|
|
|
* See update_profile.php for documentation
|
|
|
|
*
|
|
|
|
*/
|
2018-09-20 14:44:40 +02:00
|
|
|
|
|
|
|
use Friendica\App;
|
2020-02-16 10:32:56 +01:00
|
|
|
use Friendica\Core\System;
|
2020-01-18 16:50:57 +01:00
|
|
|
use Friendica\DI;
|
2018-10-15 05:09:11 +02:00
|
|
|
use Friendica\Module\Contact;
|
2018-09-20 14:44:40 +02:00
|
|
|
|
2018-11-06 22:22:42 +01:00
|
|
|
function update_contact_content(App $a)
|
2018-09-20 14:44:40 +02:00
|
|
|
{
|
2020-02-24 01:38:24 +01:00
|
|
|
if (!empty($_GET['force']) || !DI::pConfig()->get(local_user(), 'system', 'no_auto_update')) {
|
2019-11-05 22:48:54 +01:00
|
|
|
$text = Contact::content([], true);
|
2018-09-20 14:44:40 +02:00
|
|
|
} else {
|
|
|
|
$text = '';
|
|
|
|
}
|
|
|
|
|
2020-02-16 10:32:56 +01:00
|
|
|
System::htmlUpdateExit($text);
|
2018-09-20 14:44:40 +02:00
|
|
|
}
|