56 lines
1.2 KiB
PHP
56 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace Friendica\Module;
|
|
|
|
use Friendica\Core\L10n;
|
|
use Friendica\Core\Renderer;
|
|
use Friendica\Model;
|
|
|
|
/**
|
|
* @author Hypolite Petovan <mrpetovan@gmail.com>
|
|
*/
|
|
class Itemsource extends \Friendica\BaseModule
|
|
{
|
|
public static function content()
|
|
{
|
|
if (!is_site_admin()) {
|
|
return;
|
|
}
|
|
|
|
$a = self::getApp();
|
|
|
|
// @TODO: Replace with parameter from router
|
|
if (!empty($a->argv[1])) {
|
|
$guid = $a->argv[1];
|
|
}
|
|
|
|
$guid = defaults($_REQUEST['guid'], $guid);
|
|
|
|
$source = '';
|
|
$item_uri = '';
|
|
$item_id = '';
|
|
$terms = [];
|
|
if (!empty($guid)) {
|
|
$item = Model\Item::selectFirst(['id', 'guid', 'uri'], ['guid' => $guid]);
|
|
|
|
$conversation = Model\Conversation::getByItemUri($item['uri']);
|
|
|
|
$item_id = $item['id'];
|
|
$item_uri = $item['uri'];
|
|
$source = $conversation['source'];
|
|
$terms = Model\Term::tagArrayFromItemId($item['id'], [Model\Term::HASHTAG, Model\Term::MENTION, Model\Term::IMPLICIT_MENTION]);
|
|
}
|
|
|
|
$tpl = Renderer::getMarkupTemplate('debug/itemsource.tpl');
|
|
$o = Renderer::replaceMacros($tpl, [
|
|
'$guid' => ['guid', L10n::t('Item Guid'), $guid, ''],
|
|
'$source' => $source,
|
|
'$item_uri' => $item_uri,
|
|
'$item_id' => $item_id,
|
|
'$terms' => $terms,
|
|
]);
|
|
|
|
return $o;
|
|
}
|
|
}
|