1
if i write the following content in block to return the block content by method "echo" instead of returning the content to template file, the cache name will become starting with system-default-default-xxxx. May I know if there is any way to control the cache name / cache prefix?
================
include '../../../mainfile.php';
include_once XOOPS_ROOT_PATH."/class/template.php";
include_once XOOPS_ROOT_PATH.'/modules/mytabs/include/functions.php';
$GLOBALS['xoopsTpl'] =& new XoopsTpl();
$tab_blocks = mytabsblock_show($_GET['pageid'], $_GET['tabid'],'',$_GET['o']);
echo $tab_blocks[0]['content'];
================