User-defined tags

One of the little known features of CMS Made Simple is the User Defined tag. Basically, this allows you to write PHP code inside the Admin Panel. Use the 'Add User Defined Tag' button in Extensions/User-defined tags in the Admin Panel, write some code, and then insert into a template or page with {newpluginname}. Simple!

As an example, I've put together a one line plugin that will show your current User Agent information (which browser you're using). The output is right here: Wget/1.12 (linux-gnu).

If you're not looking at the source, all that is in the page is a {user_agent}. To see how this code works, edit the user_agent tag in the Extensions/User-defined tags page of the admin.

This is a VERY powerful feature if used right. Remember, user defined tags do not get cached, therefore, scripts to rotate ad banners and such will work just fine. Note also that tags code have to be written without opening < ? php and ending ? > tags.


Previous page: Tags in the core
Next page: LPNMR'09