refactoring
This commit is contained in:
parent
78d0d6e6e1
commit
be6057b056
1 changed files with 13 additions and 15 deletions
|
@ -10,7 +10,7 @@ use Friendica\Model;
|
||||||
use Friendica\Util\XML;
|
use Friendica\Util\XML;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Shows the App menu
|
* Shows a dialog for adding tags to a file
|
||||||
*/
|
*/
|
||||||
class Filer extends BaseModule
|
class Filer extends BaseModule
|
||||||
{
|
{
|
||||||
|
@ -35,20 +35,18 @@ class Filer extends BaseModule
|
||||||
if ($item_id && strlen($term)) {
|
if ($item_id && strlen($term)) {
|
||||||
// file item
|
// file item
|
||||||
Model\FileTag::saveFile(local_user(), $item_id, $term);
|
Model\FileTag::saveFile(local_user(), $item_id, $term);
|
||||||
$a->internalRedirect();
|
info(L10n::t('Filetag %s saved to item', $term));
|
||||||
return;
|
|
||||||
|
|
||||||
} else {
|
|
||||||
// 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");
|
|
||||||
return Renderer::replaceMacros($tpl, [
|
|
||||||
'$field' => ['term', L10n::t("Save to Folder:"), '', '', $filetags, L10n::t('- select -')],
|
|
||||||
'$submit' => L10n::t('Save'),
|
|
||||||
]);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 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");
|
||||||
|
return Renderer::replaceMacros($tpl, [
|
||||||
|
'$field' => ['term', L10n::t("Save to Folder:"), '', '', $filetags, L10n::t('- select -')],
|
||||||
|
'$submit' => L10n::t('Save'),
|
||||||
|
]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue