2011-09-11 22:09:57 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2024-08-23 13:11:15 +00:00
|
|
|
* Copyright (C) 2010-2024, the Friendica project
|
|
|
|
* SPDX-FileCopyrightText: 2010-2024 the Friendica project
|
2020-02-09 15:34:23 +00:00
|
|
|
*
|
2024-08-23 13:11:15 +00:00
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
2020-02-09 15:34:23 +00:00
|
|
|
*
|
|
|
|
* AJAX synchronisation of notes page
|
2011-09-11 22:09:57 +00:00
|
|
|
*/
|
2016-10-23 01:33:54 +00:00
|
|
|
|
2017-04-30 04:07:00 +00:00
|
|
|
use Friendica\App;
|
2020-02-16 09:32:56 +00:00
|
|
|
use Friendica\Core\System;
|
2020-01-18 15:50:57 +00:00
|
|
|
use Friendica\DI;
|
2017-04-30 04:07:00 +00:00
|
|
|
|
2022-09-25 16:43:00 +00:00
|
|
|
require_once 'mod/notes.php';
|
2016-10-23 01:33:54 +00:00
|
|
|
|
2022-09-25 16:43:00 +00:00
|
|
|
function update_notes_content(App $a)
|
|
|
|
{
|
|
|
|
$profile_uid = intval($_GET['p']);
|
2016-10-23 01:33:54 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* Grab the page inner contents by calling the content function from the profile module directly,
|
|
|
|
* but move any image src attributes to another attribute name. This is because
|
|
|
|
* some browsers will prefetch all the images for the page even if we don't need them.
|
|
|
|
* The only ones we need to fetch are those for new page additions, which we'll discover
|
|
|
|
* on the client side and then swap the image back.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
$text = notes_content($a, $profile_uid);
|
|
|
|
|
2020-02-16 09:32:56 +00:00
|
|
|
System::htmlUpdateExit($text);
|
2021-05-22 21:45:15 +00:00
|
|
|
}
|