| 1 | <?php |
||
| 5 | class Response |
||
| 6 | { |
||
| 7 | public $origHtml; |
||
| 8 | public $html; |
||
| 9 | public $proxyPath; |
||
| 10 | |||
| 11 | public function __construct($html) |
||
| 15 | |||
| 16 | public function setProxyPath($path) |
||
| 20 | |||
| 21 | public function replaceDomainLinks($domain) |
||
| 25 | |||
| 26 | // handle url encoding |
||
| 27 | public function hadleProxyURL($url) |
||
| 31 | |||
| 32 | public function replaceInternalHtmlLinks($usingUrlParam=false) |
||
| 42 | |||
| 43 | public function replaceInternalCssLinks($usingUrlParam=false) |
||
| 50 | |||
| 51 | public function getHtml() |
||
| 55 | |||
| 56 | public function getOrigHtml() |
||
| 60 | } |
||
| 61 |