| 1 |
lars |
1 |
<?php
|
|
|
2 |
|
|
|
3 |
/*
|
|
|
4 |
* This file is part of the symfony package.
|
|
|
5 |
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
|
|
|
6 |
*
|
|
|
7 |
* For the full copyright and license information, please view the LICENSE
|
|
|
8 |
* file that was distributed with this source code.
|
|
|
9 |
*/
|
|
|
10 |
|
|
|
11 |
require_once 'PEAR/REST.php';
|
|
|
12 |
|
|
|
13 |
/**
|
|
|
14 |
* sfPearRest interacts with a PEAR channel.
|
|
|
15 |
*
|
|
|
16 |
* @package symfony
|
|
|
17 |
* @subpackage plugin
|
|
|
18 |
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
|
|
|
19 |
* @version SVN: $Id: sfPearRest.class.php 10677 2008-08-05 19:11:48Z fabien $
|
|
|
20 |
*/
|
|
|
21 |
class sfPearRest extends PEAR_REST
|
|
|
22 |
{
|
|
|
23 |
/**
|
|
|
24 |
* @see PEAR_REST::downloadHttp()
|
|
|
25 |
*/
|
|
|
26 |
public function downloadHttp($url, $lastmodified = null, $accept = false)
|
|
|
27 |
{
|
|
|
28 |
return parent::downloadHttp($url, $lastmodified, array_merge(false !== $accept ? $accept : array(), array("\r\nX-SYMFONY-VERSION: ".SYMFONY_VERSION)));
|
|
|
29 |
}
|
|
|
30 |
}
|