Jacek Kowalski
2012-11-27 4c7016fb3e2dd55de4389872ba5c6c65bbf5a582
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?php
class bot_pogoda_init implements BotModuleInit {
    function register() {
        $handler_pogoda = array(
            array(
                'file' => 'handler.php',
                'class' => 'bot_pogoda_module',
                'method' => 'pogoda',
            )
        );
        $handler_miasto = array(
            array(
                'file' => 'handler.php',
                'class' => 'bot_pogoda_module',
                'method' => 'miasto',
            )
        );
        
        return array(
            'pogoda' => $handler_pogoda,
            'p' => $handler_pogoda,
            'weather' => $handler_pogoda,
            'temperatura' => $handler_pogoda,
            'temp' => $handler_pogoda,
            'miasto' => $handler_miasto,
            'm' => $handler_miasto,
        );
    }
    
    function help($params = NULL) {
        if($params === NULL) {
            return new BotMsg('<b>pogoda</b> <i>[miasto]</i><br />'."\n"
                . '   Pogoda dla miasta.<br />'."\n"
                . '<b>miasto</b> <i>miasto</i><br />'."\n"
                . '   Ustawia domyślne miasto dla funkcji pogoda.<br />'."\n"
                . '<br />'."\n");
        }
        elseif(substr($params, 0, 1) == 'm') {
            return new BotMsg('<b>miasto</b> <i>miasto</i> (alias: <b>m</b>)<br />'."\n"
                . '   Ustawia domyślne miasto dla komendy <b>pogoda</b>. Dane o lokalizacji są również wykorzystywane do wyliczania godziny wschodu i zachodu słońca w funkcji <b>data</b>.<br />'."\n"
                . '<br />'."\n"
                . '<u>Przykład:</u><br />'."\n"
                . 'miasto Warszawa');
        }
        else
        {
            return new BotMsg('<b>pogoda</b> <i>[miasto]</i> (aliasy: <b>p, weather, temp</b>)<br />'."\n"
                . '   Podaje pogodę dla danego miasta na najbliższe dni. Domyślne miasto można ustawić komendą <b>miasto</p>.<br />'."\n"
                . '<br />'."\n"
                . '<u>Przykład:</u><br />'."\n"
                . 'pogoda Warszawa');
        }
    }
}
 
return 'bot_pogoda_init';
?>