Hi there!
When I link to files within my site, I'd like to have special file links like
Name of the file (6.3 KB)
Is it possible to realize with CMSMS to e.g. print the size of a file and do this automatically lateron when selecting a file?
TIA Ralph
Custom file links
Re: Custom file links
ok, Im a bit tired 
Youll want to create new user defined tag, maybe call it "file_link" and give one parameter for it, maybe "file"
now that tag knows almost everything it needs (path would be needed also, but lets assume all your linkable files are in uploads/files)
then you need to get the file size with php and echo the html and filesize as you want from the tag.
OR you could get uploads module which does most these things out of the box...
hope this helps

Youll want to create new user defined tag, maybe call it "file_link" and give one parameter for it, maybe "file"
now that tag knows almost everything it needs (path would be needed also, but lets assume all your linkable files are in uploads/files)
then you need to get the file size with php and echo the html and filesize as you want from the tag.
OR you could get uploads module which does most these things out of the box...
hope this helps
Re: Custom file links
Thanks a lot!
I really could not imagine CMS Made Simple is really that simple
I've already written a user defined tag. You can find it at the CMSMS-Wiki:
http://wiki.cmsmadesimple.org/index.php ... #File_link
thx Ralph
I really could not imagine CMS Made Simple is really that simple

http://wiki.cmsmadesimple.org/index.php ... #File_link
thx Ralph
Re: Custom file links
Great, thanks for sharing your tag it might become handy