friendica/mod/filer.php

43 lines
1016 B
PHP
Raw Normal View History

<?php
2018-01-22 13:29:50 +01:00
/**
* @file mod/filer.php
*/
use Friendica\App;
2018-01-22 13:29:50 +01:00
use Friendica\Core\L10n;
2018-10-29 22:20:46 +01:00
use Friendica\Core\Logger;
use Friendica\Core\PConfig;
use Friendica\Core\Renderer;
use Friendica\Model\FileTag;
use Friendica\Util\XML;
2018-01-22 13:29:50 +01:00
function filer_content(App $a)
{
if (! local_user()) {
2018-12-26 06:40:12 +01:00
exit();
}
$term = XML::unescape(trim(defaults($_GET, 'term', '')));
$item_id = (($a->argc > 1) ? intval($a->argv[1]) : 0);
2018-10-29 22:20:46 +01:00
Logger::log('filer: tag ' . $term . ' item ' . $item_id);
2018-01-22 13:29:50 +01:00
if ($item_id && strlen($term)) {
// file item
FileTag::saveFile(local_user(), $item_id, $term);
} else {
// return filer dialog
2018-01-22 13:29:50 +01:00
$filetags = PConfig::get(local_user(), 'system', 'filetags');
$filetags = FileTag::fileToList($filetags, 'file');
2018-01-22 13:29:50 +01:00
$filetags = explode(",", $filetags);
2012-12-22 20:57:29 +01:00
$tpl = Renderer::getMarkupTemplate("filer_dialog.tpl");
$o = Renderer::replaceMacros($tpl, [
2018-01-22 13:29:50 +01:00
'$field' => ['term', L10n::t("Save to Folder:"), '', '', $filetags, L10n::t('- select -')],
'$submit' => L10n::t('Save'),
]);
echo $o;
}
2018-12-26 06:40:12 +01:00
exit();
}