<?php


class DBForms extends CMSModule
{
        function GetName() { return 'DBForms'; }
        function GetVersion() { return '0.1';}
       // Allow this module to be called from a page
       function IsPluginModule() { return true; }
       
       function DoAction1($action, $id, $params, $returnid=-1){
            /*
            Use this function to debug, rename DoAction1 to DoAction
            note that once u do this the action.default will get overridden
            */
            
            /*
             echo "Hello World!".'<br>';
             echo $action.'<br>';
             echo $id.'<br>';
             echo $params.'<br>';
             
             var_dump($params);
             */
             
       }
            
}

?>