]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/cmd_unloadmodule.cpp
715ff4fcbbc80d5128cb3237aff8255efd60bc1c
[user/henk/code/inspircd.git] / src / cmd_unloadmodule.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
6  * See: http://www.inspircd.org/wiki/index.php/Credits
7  *
8  * This program is free but copyrighted software; see
9  *            the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 #include "inspircd.h"
15 #include "users.h"
16 #include "commands/cmd_unloadmodule.h"
17
18
19
20 extern "C" command_t* init_command(InspIRCd* Instance)
21 {
22         return new cmd_unloadmodule(Instance);
23 }
24
25 CmdResult cmd_unloadmodule::Handle (const char** parameters, int pcnt, userrec *user)
26 {
27         if (ServerInstance->UnloadModule(parameters[0]))
28         {
29                 ServerInstance->WriteOpers("*** MODULE UNLOADED: %s unloaded %s", user->nick, parameters[0]);
30                 user->WriteServ("973 %s %s :Module successfully unloaded.",user->nick, parameters[0]);
31         }
32         else
33         {
34                 user->WriteServ("972 %s %s :Failed to unload module: %s",user->nick, parameters[0],ServerInstance->ModuleError());
35                 return CMD_FAILURE;
36         }
37
38         return CMD_SUCCESS;
39 }