Customising the Main Menu
11 posts by 3 authors in: Forums > CMS Builder
Last Post: November 17, 2011 (RSS)
Think I have it working as an inline iframe option! Adding the following code into the start of the document:
Seems to do the trick. I was a fair bit of trial and error, but I think I only have the essential code included. Please let me know if there is anything I should be aware of!
Last nights conversation got me thinking Ross, thanks to both you and Jason for your assistance :)
Paul
<?php
define('START_SESSION', true);
define('IS_CMS_ADMIN', true);
global $CURRENT_USER;
require_once "../lib/init.php";
require_once "../lib/login_functions.php";
require_once "../lib/user_functions.php";
$CURRENT_USER = getCurrentUserAndLogin();
?>
Seems to do the trick. I was a fair bit of trial and error, but I think I only have the essential code included. Please let me know if there is anything I should be aware of!
Last nights conversation got me thinking Ross, thanks to both you and Jason for your assistance :)
Paul