As a basic CMSMS user I'm trying to work some with FUE en customcontent. I'm running into some problems I can't get solved.
First off, when typing some CC tags in TinyMCE, some caracters get replaced. This is the case with for example the following tag:
Code: Select all
{if $ccuser->loggedin()}Code: Select all
{if $ccuser->loggedin()}Secondly, I want to show logged in users a filebrowser with their own specific files. These get placed in the folder uploads/debiteuren/debiteurnummer/ where debiteurnummer is a variable number, which I also specify as a property for FEU. So I found this nice filebrowser that I included, but how do I put a tag in that file that makes the link correctly? It has the following string for the folderpath:
Code: Select all
Start Directory - To list the files contained within the current
directory enter '.', otherwise enter the path to the directory
you wish to list. The path must be relative to the current
directory.
*/
$startdir = '.';Code: Select all
$startdir = 'uploads/debiteuren/12000008/';Code: Select all
{$ccuser->property('debiteurnummer')}

