12-23-2008, 11:00 AM
FrameSys is my first, ever plugin for TheHostingTool. Well, except the UMI yes.
This makes you to make "small" plugins easily. Don't waste time writing a template just to show an external link - You have better things to do. This small plugin lets you to show any external page using just this simple code.
Easy, huh? AREA defines the "name of the website" and FRAME defines the URL. Then just echo it. Lalala - You have an external website linked in a frame. Without any extra tpls.
Great to link your users from the Client Area to your forum without leaving the THT Page, etc. You have many uses for it. Use the imagination.
To install, extract the package and you should see an /includes folder, just that. Preserve the directory structure (just grab the /includes folder and upload it into your THT ROOT DIRECTORY)
Download: [attachment=24]
This makes you to make "small" plugins easily. Don't waste time writing a template just to show an external link - You have better things to do. This small plugin lets you to show any external page using just this simple code.
PHP Code:
public function forums(){
global $style;
$array['AREA'] = "TheHostingTool Support Forums";
$array['FRAME'] = "http://thehostingtool.com/forum";
echo $style->replaceVar('tpl/frame.tpl', $array);
}
Great to link your users from the Client Area to your forum without leaving the THT Page, etc. You have many uses for it. Use the imagination.
To install, extract the package and you should see an /includes folder, just that. Preserve the directory structure (just grab the /includes folder and upload it into your THT ROOT DIRECTORY)

Download: [attachment=24]

