|
Moodle
2.2.1
http://www.collinsharper.com
|
00001 <?php 00002 00027 require_once 'Zend/Gdata/Extension.php'; 00028 00038 class Zend_Gdata_DublinCore_Extension_Creator extends Zend_Gdata_Extension 00039 { 00040 00041 protected $_rootNamespace = 'dc'; 00042 protected $_rootElement = 'creator'; 00043 00051 public function __construct($value = null) 00052 { 00053 $this->registerAllNamespaces(Zend_Gdata_DublinCore::$namespaces); 00054 parent::__construct(); 00055 $this->_text = $value; 00056 } 00057 00058 }