I'm running beta6 and i'm busy developing the ShopMadeSimple module. I need to add some style to make things prettier (it's almost ready for release, just polish required) and discovered above function. However nothing is output in the page when you load the admin section. Below is some code that is in the action.defaultadmin.php file
Code: Select all
<?php
if (!isset ($gCms))
exit;
/*
* Check that the user has access to the shop
*/
if (!$this->CheckPermission('Use ShopMadeSimple'))
{
// @TODO: Kick them out with an error message
return false;
}
/*
* Load the stylesheet for our display
*/
$this->AdminStyle('.category_column {width:100px;}');
G