|
Revision 76, 0.9 KB
(checked in by Seldaek, 5 years ago)
|
|
* Streams: parameter parsing bug fixed
* Karma: supports multi-word items using (grouped by parenthesis)
* Quit: added 'die' command, same effect with different quit message
* Tld: added easter eggs (and spoons)
|
| Line | |
|---|
| 1 | <?php |
|---|
| 2 | |
|---|
| 3 | |
|---|
| 4 | |
|---|
| 5 | |
|---|
| 6 | require_once 'Phergie/Plugin/Abstract/AdminCommand.php'; |
|---|
| 7 | |
|---|
| 8 | |
|---|
| 9 | |
|---|
| 10 | |
|---|
| 11 | |
|---|
| 12 | class Phergie_Plugin_Quit extends Phergie_Plugin_Abstract_AdminCommand |
|---|
| 13 | { |
|---|
| 14 | |
|---|
| 15 | |
|---|
| 16 | |
|---|
| 17 | |
|---|
| 18 | |
|---|
| 19 | |
|---|
| 20 | |
|---|
| 21 | |
|---|
| 22 | |
|---|
| 23 | |
|---|
| 24 | |
|---|
| 25 | public function onDoQuit() |
|---|
| 26 | { |
|---|
| 27 | $this->doQuit('by request of ' . $this->event->getNick()); |
|---|
| 28 | } |
|---|
| 29 | |
|---|
| 30 | public function onDoDie() |
|---|
| 31 | { |
|---|
| 32 | $this->doQuit('bows to ' . $this->event->getNick() .' and commits seppuku'); |
|---|
| 33 | } |
|---|
| 34 | } |
|---|