File : j06000cron_dummy_third_party_plugin.class.php

<?php
// ################################################################
defined( '_JOMRES_INITCHECK' ) or die( '' );
// ################################################################
 
class j06000cron_dummy_third_party_plugin
{
function j06000cron_dummy_third_party_plugin ()
{
// This if ($MiniComponents->template_touch) code must be included in every Event/Mini-component otherwise you'll cause a fatal error in the Touch Templates feature of Jomres administrator
// If you're not including any text that you think that users would translate in Touch Templates, then it's safe to leave $this->template_touchable as false.
$MiniComponents =jomres_getSingleton('mcHandler');
if ($MiniComponents->template_touch)
{
$this->template_touchable=false; return;
}
// Do stuff that needs to be done when this is called as a pseudo cron job
}
 
// This must be included in every Event/Mini-component
function getRetVals()
{
return null;
}
}
?>
This document is copyright Vince Wooll/Woollyinwales IT, 2011. All rights reserved.