friendica/src/Module/Filer.php

56 lines
1.3 KiB
PHP
Raw Normal View History

2019-03-01 11:01:44 +01:00
<?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;
/**
2019-03-01 11:57:16 +01:00
* Shows a dialog for adding tags to a file
2019-03-01 11:01:44 +01:00
*/
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()
2019-03-01 11:01:44 +01:00
{
$a = self::getApp();
$logger = $a->getLogger();
$term = XML::unescape(trim(defaults($_GET, 'term', '')));
2019-05-01 21:29:04 +02:00
// @TODO: Replace with parameter from router
2019-03-01 11:01:44 +01:00
$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);
2019-03-01 11:57:16 +01:00
info(L10n::t('Filetag %s saved to item', $term));
2019-03-01 11:01:44 +01:00
}
2019-03-01 11:57:16 +01:00
// 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, [
2019-03-01 11:57:16 +01:00
'$field' => ['term', L10n::t("Save to Folder:"), '', '', $filetags, L10n::t('- select -')],
'$submit' => L10n::t('Save'),
]);
exit;
2019-03-01 11:01:44 +01:00
}
}