File : j00005dummy_third_party_plugin.class.php
<?php
// ################################################################
defined( '_JOMRES_INITCHECK' ) or die( '' );
// ################################################################
class j00005dummy_third_party_plugin {
functionj00005dummy_third_party_plugin()
{
// Must be in all minicomponents. Minicomponents with templates that can contain editable text should run $this->template_touch() else just return
$MiniComponents =jomres_getSingleton('mcHandler');
if ($MiniComponents->template_touch)
{
$this->template_touchable=false; return;
}
$ePointFilepath = get_showtime('ePointFilepath');
if (file_exists(get_showtime('ePointFilepath').'language'.JRDS.get_showtime('lang').'.php'))
require_once(get_showtime('ePointFilepath').'language'.JRDS.get_showtime('lang').'.php');
else
{
if (file_exists(get_showtime('ePointFilepath').'language'.JRDS.'en-GB.php'))
require_once(get_showtime('ePointFilepath').'language'.JRDS.'en-GB.php');
}
}
/**
#
* Must be included in every mini-component
#
*/
function getRetVals()
{
return null;
}
}
?>