]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/commands/cmd_unloadmodule.cpp
Update all wiki links to point to the new wiki. This was done automatically with...
[user/henk/code/inspircd.git] / src / commands / cmd_unloadmodule.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
6  * See: http://wiki.inspircd.org/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 "commands/cmd_unloadmodule.h"
16
17
18
19 extern "C" DllExport Command* init_command(InspIRCd* Instance)
20 {
21         return new CommandUnloadmodule(Instance);
22 }
23
24 CmdResult CommandUnloadmodule::Handle (const std::vector<std::string>& parameters, User *user)
25 {
26         if (ServerInstance->Modules->Unload(parameters[0].c_str()))
27         {
28                 ServerInstance->SNO->WriteToSnoMask('A', "MODULE UNLOADED: %s unloaded %s", user->nick.c_str(), parameters[0].c_str());
29                 user->WriteNumeric(973, "%s %s :Module successfully unloaded.",user->nick.c_str(), parameters[0].c_str());
30         }
31         else
32         {
33                 user->WriteNumeric(972, "%s %s :%s",user->nick.c_str(), parameters[0].c_str(), ServerInstance->Modules->LastError().c_str());
34                 return CMD_FAILURE;
35         }
36
37         return CMD_SUCCESS;
38 }