2
0

FStop.php 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <?php
  2. /**
  3. * Zend Framework
  4. *
  5. * LICENSE
  6. *
  7. * This source file is subject to the new BSD license that is bundled
  8. * with this package in the file LICENSE.txt.
  9. * It is also available through the world-wide-web at this URL:
  10. * http://framework.zend.com/license/new-bsd
  11. * If you did not receive a copy of the license and are unable to
  12. * obtain it through the world-wide-web, please send an email
  13. * to license@zend.com so we can send you a copy immediately.
  14. *
  15. * @category Zend
  16. * @package Zend_Gdata
  17. * @subpackage Exif
  18. * @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
  19. * @license http://framework.zend.com/license/new-bsd New BSD License
  20. */
  21. /**
  22. * @see Zend_Gdata_Extension
  23. */
  24. require_once 'Zend/Gdata/Extension.php';
  25. /**
  26. * @see Zend_Gdata_Exif
  27. */
  28. require_once 'Zend/Gdata/Exif.php';
  29. /**
  30. * Represents the exif:fStop element used by the Gdata Exif extensions.
  31. *
  32. * @category Zend
  33. * @package Zend_Gdata
  34. * @subpackage Exif
  35. * @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
  36. * @license http://framework.zend.com/license/new-bsd New BSD License
  37. */
  38. class Zend_Gdata_Exif_Extension_FStop extends Zend_Gdata_Extension
  39. {
  40. protected $_rootNamespace = 'exif';
  41. protected $_rootElement = 'fstop';
  42. /**
  43. * Constructs a new Zend_Gdata_Exif_Extension_FStop object.
  44. *
  45. * @param string $text (optional) The value to use for this element.
  46. */
  47. public function __construct($text = null)
  48. {
  49. $this->registerAllNamespaces(Zend_Gdata_Exif::$namespaces);
  50. parent::__construct();
  51. $this->setText($text);
  52. }
  53. }