]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_testcommand.cpp
XHTML 1.1 spec validation and charset
[user/henk/code/inspircd.git] / src / modules / m_testcommand.cpp
index 8fdaff94f5103e908f640fcbade42219681ada15..473f2941d8250316b35f9a8961274f2980e9102b 100644 (file)
@@ -2,7 +2,7 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  Inspire is copyright (C) 2002-2004 ChatSpike-Dev.
+ *  InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
  *                       E-mail:
  *                <brain@chatspike.net>
  *               <Craig@chatspike.net>
@@ -23,7 +23,7 @@ using namespace std;
 
 /* $ModDesc: Povides a proof-of-concept test /WOOT command */
 
-Server *Srv;
+static Server *Srv;
         
 class cmd_woot : public command_t
 {
@@ -69,46 +69,15 @@ class ModuleTestCommand : public Module
                // command takes only one parameter.
                newcommand = new cmd_woot();
                Srv->AddCommand(newcommand);
-
-               // Add a mode +Z for channels with no parameters                
-               Srv->AddExtendedMode('Z',MT_CHANNEL,false,1,0);
        }
-       
-       virtual int OnExtendedMode(userrec* user, void* target, char modechar, int type, bool mode_on, string_list &params)
-       {
-               
-               if ((modechar != 'Z') || (type != MT_CHANNEL))
-               {
-                       // this mode isn't ours, we have to bail and return 0 to not handle it.
-                       Srv->Log(DEBUG,"Extended mode event triggered, but this is not a mode i've claimed!");
-                       return 0;
-               }
-               
-               chanrec* chan = (chanrec*)target;
-               
-               if (mode_on)
-               {
-                       Srv->Log(DEBUG,"Custom mode is being added to channel");
-                       Srv->Log(DEBUG,chan->name);
-               }
-               else
-               {
-                       Srv->Log(DEBUG,"Custom mode is being taken from a channel");
-                       Srv->Log(DEBUG,chan->name);
-               }
 
-               // must return 1 to handle the mode!
-               return 1;
+       void Implements(char* List)
+       {
+               List[I_OnUserJoin] = 1;
        }
-       
+
        virtual void OnUserJoin(userrec* user, chanrec* channel)
        {
-               Srv->Log(DEBUG,"OnUserJoin triggered");
-               if (channel->IsCustomModeSet('Z'))
-               {
-                       std::string param = channel->GetModeParameter('Z');
-                       Srv->Log(DEBUG,"Custom mode is set on this channel! Parameter="+param);
-               }
        }
        
        virtual ~ModuleTestCommand()
@@ -119,11 +88,6 @@ class ModuleTestCommand : public Module
        {
                return Version(1,0,0,0,VF_STATIC|VF_VENDOR);
        }
-       
-       virtual void OnUserConnect(userrec* user)
-       {
-       }
-
 };