Difference between revisions of "Creating Pages"
From WHMCS Documentation
Line 13: | Line 13: | ||
require("init.php"); | require("init.php"); | ||
− | if ($_SESSION['uid'] | + | if ($_SESSION['uid']) { |
# User is Logged In - put any code you like here | # User is Logged In - put any code you like here | ||
} | } |
Revision as of 21:42, 15 April 2008
To add your own pages to the WHMCS system which utilise the WHMCS templating system, you may use the following code. This code is designed to work with files placed in the root whmcs directory. This is ideal for adding custom pages to the client area or building an entire site around your WHMCS system.
<?php define("CLIENTAREA",true); require("dbconnect.php"); require("includes/functions.php"); $pagetitle = $_LANG['clientareatitle']; $pageicon = "images/support/clientarea.gif"; $breadcrumbnav = '<a href="index.php">'.$_LANG['globalsystemname'].'</a> > <a href="mypage.php">My Page</a>'; require("init.php"); if ($_SESSION['uid']) { # User is Logged In - put any code you like here } # Define the template filename to be used without the .tpl extension $templatefile = "homepage"; # To assign variables in Smarty use the following syntax. This can then be used as {$variablename} in the template $smartyvalues["variablename"] = $value; require("display.php"); ?>