|
Moodle
2.2.1
http://www.collinsharper.com
|
00001 <?php 00002 00027 require_once 'Zend/Gdata.php'; 00028 00039 class Zend_Gdata_Exif extends Zend_Gdata 00040 { 00041 00047 public static $namespaces = array( 00048 array('exif', 'http://schemas.google.com/photos/exif/2007', 1, 0) 00049 ); 00050 00058 public function __construct($client = null, $applicationId = 'MyCompany-MyApp-1.0') 00059 { 00060 $this->registerPackage('Zend_Gdata_Exif'); 00061 $this->registerPackage('Zend_Gdata_Exif_Extension'); 00062 parent::__construct($client, $applicationId); 00063 } 00064 00065 }