One of the core features of Prof.JS is it's modules.
With it's release we can be sure that editing forums now becomes a blast.
To install Special Themes created on Webclone and by other users we make use of the do method of Prof.
Example:
Prof.do('apply','my_theme_slug');
To create themes we use the do method as well only with a different action.
Example:
Prof.do('newApply',{
slug:'my_theme_slug',
name:'My Theme',
css:'http://styles.com/style.css',
header:'New Head',
footer:'TM',
});
To instantiate plugins we use install method of Prof.JS
Example:
Prof.install('theme_slug',true);
To create plugins for use we use the setMod method.
Example:
Prof.setMod('theme_slug',{
//Module Info
});
#themes, #plugins