|
Moodle
2.2.1
http://www.collinsharper.com
|
00001 <?php 00002 00027 require_once 'Zend/Gdata/App/Extension.php'; 00028 00038 class Zend_Gdata_Extension extends Zend_Gdata_App_Extension 00039 { 00040 00041 protected $_rootNamespace = 'gd'; 00042 00043 public function __construct() 00044 { 00045 /* NOTE: namespaces must be registered before calling parent */ 00046 $this->registerNamespace('gd', 00047 'http://schemas.google.com/g/2005'); 00048 $this->registerNamespace('openSearch', 00049 'http://a9.com/-/spec/opensearchrss/1.0/', 1, 0); 00050 $this->registerNamespace('openSearch', 00051 'http://a9.com/-/spec/opensearch/1.1/', 2, 0); 00052 $this->registerNamespace('rss', 00053 'http://blogs.law.harvard.edu/tech/rss'); 00054 00055 parent::__construct(); 00056 } 00057 00058 }