mirror of
https://github.com/friendica/friendica
synced 2024-11-11 15:02:55 +00:00
55 lines
1.3 KiB
PHP
55 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace Friendica\Module;
|
|
|
|
use Friendica\BaseModule;
|
|
use Friendica\Core\L10n;
|
|
use Friendica\Core\PConfig;
|
|
use Friendica\Core\Renderer;
|
|
use Friendica\Model;
|
|
use Friendica\Util\XML;
|
|
|
|
/**
|
|
* Shows a dialog for adding tags to a file
|
|
*/
|
|
class Filer extends BaseModule
|
|
{
|
|
public static function init()
|
|
{
|
|
if (!local_user()) {
|
|
info(L10n::t('You must be logged in to use this module'));
|
|
self::getApp()->internalRedirect();
|
|
}
|
|
}
|
|
|
|
public static function rawContent()
|
|
{
|
|
$a = self::getApp();
|
|
$logger = $a->getLogger();
|
|
|
|
$term = XML::unescape(trim(defaults($_GET, 'term', '')));
|
|
// @TODO: Replace with parameter from router
|
|
$item_id = (($a->argc > 1) ? intval($a->argv[1]) : 0);
|
|
|
|
$logger->info('filer', ['tag' => $term, 'item' => $item_id]);
|
|
|
|
if ($item_id && strlen($term)) {
|
|
// file item
|
|
Model\FileTag::saveFile(local_user(), $item_id, $term);
|
|
info(L10n::t('Filetag %s saved to item', $term));
|
|
}
|
|
|
|
// return filer dialog
|
|
$filetags = PConfig::get(local_user(), 'system', 'filetags');
|
|
$filetags = Model\FileTag::fileToList($filetags, 'file');
|
|
$filetags = explode(",", $filetags);
|
|
|
|
$tpl = Renderer::getMarkupTemplate("filer_dialog.tpl");
|
|
echo Renderer::replaceMacros($tpl, [
|
|
'$field' => ['term', L10n::t("Save to Folder:"), '', '', $filetags, L10n::t('- select -')],
|
|
'$submit' => L10n::t('Save'),
|
|
]);
|
|
|
|
exit;
|
|
}
|
|
}
|