Jacek Kowalski
2016-02-15 eac90243793cf8ba3da2117ac2d76efbcec24e53
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
<?php
/**
 * Klasa konwertuje wiadomość ({@link BotMsg}) do formatu odpowiedniego dla interfejsu WWW
 */
class BotMsgHTTP implements BotMsgInterface {
    private $html = '';
    
    /**
     * @param BotMsg $msg Wiadomość do przekonwertowania
     */
    function __construct(BotMsg $msg) {
        $this->html = $msg->getHTML();
    }
    
    /**
     * @return string
     * Zwraca wiadomość HTML
     */
    function __toString() {
        return $this->html;
    }
    
    /**
     * @return string
     * Zwraca wiadomość w formacie HTML
     */
    function getHTML() {
        return $this->html;
    }
    
    function sendPullResponse() {
        header('Content-Type: text/html; charset=utf-8');
        echo $this;
    }
}
?>