Can you please point me to where the manual provides info on how to use this? or give me direction.
this is what I have:
/**
* Return list of custom disp types handled by this plugin
*
* @return array list of disp modes handled by this plugin
*/
function GetHandledDispModes()
{
return array(
'disp_test', // display our test disp
);
}
/**
* Display our custom disp mode(s)
*
* @param mixed array $params
* disp > display mode requested
*
* @return did we display?
*/
function HandleDispMode( $params )
{
echo '<p>This is the test plugin handling the ['.$params['disp'].'] disp mode.</p>';
}
this is how I implemented it:
/**
* Return list of custom disp types handled by this plugin
*
* @return array list of disp modes handled by this plugin
*/
function GetHandledDispModes()
{
return array(
'disp_test', // display our test disp
);
}
/**
* Display our custom disp mode(s)
*
* @param mixed array $params
* disp > display mode requested
*
* @return did we display?
*/
function HandleDispMode( $params )
{
include '_test.disp.php';
}
surely there is a better way of doing this?
Hi @achillis,
Maybe you already went to this page, but the entire section could help you to work with $disp: http://b2evolution.net/man/advanced-customization/themes-templates-skins/skin-tags/include-disp