I am trying to call a file to show in the admincp.
In my admincp/configuration.php in have:
PHP Code:
<?php
// ####################### SET PHP ENVIRONMENT ###########################
error_reporting(E_ALL & ~E_NOTICE);
// #################### DEFINE IMPORTANT CONSTANTS #######################
$_shopfile = basename($_SERVER['SCRIPT_FILENAME'], '.php');
if (($pos = strrpos($_shopfile, '.')) !== false) {$_shopfile = substr($_shop, 0, $pos);}
define('THIS_SCRIPT', 'osc_' . $_shopfile);
//define('CSRF_PROTECTION', true);
// change this depending on your filename
// ################### PRE-CACHE TEMPLATES AND DATA ######################
// get special phrase groups
$phrasegroups = array();
// get special data templates from the datastore
$specialtemplates = array();
// pre-cache templates used by all actions
$globaltemplates = array('oscShop_admin',
);
// pre-cache templates used by specific actions
$actiontemplates = array();
// ######################### REQUIRE BACK-END ############################
// if your page is outside of your normal vb forums directory, you should change directories by uncommenting the next line
// chdir ('/path/to/your/forums');
require_once('./global.php');
// #######################################################################
// ######################## START MAIN SCRIPT ############################
// #######################################################################
$navbits = construct_navbits(array('' => 'osc Shopping Cart'));
$navbar = render_navbar_template($navbits);
// ###### YOUR CUSTOM CODE GOES HERE #####
$pagetitle = 'osc Shopping Cart';
// ###### NOW YOUR TEMPLATE IS BEING RENDERED ######
$templater = vB_Template::create('oscShop_admin');
$templater->register_page_templates();
$templater->register('navbar', $navbar);
$templater->register('pagetitle', $pagetitle);
$templater->register('includeshopbody', $includeshopbody);
print_output($templater->render());
?>
I created a plugin called oscShop Body Admin.
Hook Location is gobal_start
Code in the plugin is:
PHP Code:
if (THIS_SCRIPT == 'osc_configuration')
{
ob_start();
include('./packages/shop/admin/configuration.php');
$includeshopbody = ob_get_contents();
ob_end_clean();
}
My template is oscShop_admin
Code:
PHP Code:
{vb:raw includeshopbody}
If I move the file configuration.php from the admincp directory to the root directory it works in Admin Control Panel when selected.
But if it is in the admincp directory it shows nothing in the Admin Control Panel when selected.