2012-03-14 01:13:03 +00:00
|
|
|
<?php
|
2018-01-22 12:29:50 +00:00
|
|
|
/**
|
|
|
|
* @file mod/filer.php
|
|
|
|
*/
|
2017-04-30 04:07:00 +00:00
|
|
|
use Friendica\App;
|
2018-01-22 12:29:50 +00:00
|
|
|
use Friendica\Core\L10n;
|
2018-10-29 21:20:46 +00:00
|
|
|
use Friendica\Core\Logger;
|
2017-11-07 02:22:52 +00:00
|
|
|
use Friendica\Core\PConfig;
|
2018-10-30 18:51:45 +00:00
|
|
|
use Friendica\Model\FileTag;
|
2017-04-30 04:07:00 +00:00
|
|
|
|
2018-01-22 12:29:50 +00:00
|
|
|
require_once 'include/items.php';
|
2012-03-14 01:13:03 +00:00
|
|
|
|
2018-01-22 12:29:50 +00:00
|
|
|
function filer_content(App $a)
|
|
|
|
{
|
2016-12-20 10:56:34 +00:00
|
|
|
if (! local_user()) {
|
2012-03-14 01:13:03 +00:00
|
|
|
killme();
|
|
|
|
}
|
|
|
|
|
2018-07-18 19:41:24 +00:00
|
|
|
$term = unxmlify(trim(defaults($_GET, 'term', '')));
|
2012-03-31 22:25:17 +00:00
|
|
|
$item_id = (($a->argc > 1) ? intval($a->argv[1]) : 0);
|
2012-03-14 01:13:03 +00:00
|
|
|
|
2018-10-29 21:20:46 +00:00
|
|
|
Logger::log('filer: tag ' . $term . ' item ' . $item_id);
|
2012-03-14 01:13:03 +00:00
|
|
|
|
2018-01-22 12:29:50 +00:00
|
|
|
if ($item_id && strlen($term)) {
|
2012-03-28 08:49:34 +00:00
|
|
|
// file item
|
2018-10-30 18:51:45 +00:00
|
|
|
FileTag::saveFile(local_user(), $item_id, $term);
|
2012-03-28 08:49:34 +00:00
|
|
|
} else {
|
|
|
|
// return filer dialog
|
2018-01-22 12:29:50 +00:00
|
|
|
$filetags = PConfig::get(local_user(), 'system', 'filetags');
|
2018-10-30 18:51:45 +00:00
|
|
|
$filetags = FileTag::fileToList($filetags, 'file');
|
2018-01-22 12:29:50 +00:00
|
|
|
$filetags = explode(",", $filetags);
|
2012-12-22 19:57:29 +00:00
|
|
|
|
2012-12-25 18:48:02 +00:00
|
|
|
$tpl = get_markup_template("filer_dialog.tpl");
|
2018-01-15 13:05:12 +00:00
|
|
|
$o = replace_macros($tpl, [
|
2018-01-22 12:29:50 +00:00
|
|
|
'$field' => ['term', L10n::t("Save to Folder:"), '', '', $filetags, L10n::t('- select -')],
|
|
|
|
'$submit' => L10n::t('Save'),
|
2018-01-15 13:05:12 +00:00
|
|
|
]);
|
2017-01-09 12:12:54 +00:00
|
|
|
|
2012-03-28 08:49:34 +00:00
|
|
|
echo $o;
|
|
|
|
}
|
2012-03-14 01:13:03 +00:00
|
|
|
killme();
|
|
|
|
}
|