/pimcore/lib/Zend/Form/Element/Note.php

https://github.com/benawv/bogor-city-guide · PHP · 64 lines · 10 code · 4 blank · 50 comment · 0 complexity · 838ed8a05c82f1d2ebf326ab38bf4c36 MD5 · raw file

  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_Form
  17. * @subpackage Element
  18. * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
  19. * @license http://framework.zend.com/license/new-bsd New BSD License
  20. */
  21. /** Zend_Form_Element_Xhtml */
  22. // require_once 'Zend/Form/Element/Xhtml.php';
  23. /**
  24. * Element to show an HTML note
  25. *
  26. * @category Zend
  27. * @package Zend_Form
  28. * @subpackage Element
  29. * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
  30. * @license http://framework.zend.com/license/new-bsd New BSD License
  31. * @version $Id$
  32. */
  33. class Zend_Form_Element_Note extends Zend_Form_Element_Xhtml
  34. {
  35. /**
  36. * Default form view helper to use for rendering
  37. *
  38. * @var string
  39. */
  40. public $helper = 'formNote';
  41. /**
  42. * Ignore flag (used when retrieving values at form level)
  43. *
  44. * @var bool
  45. */
  46. protected $_ignore = true;
  47. /**
  48. * Validate element value (pseudo)
  49. *
  50. * There is no need to reset the value
  51. *
  52. * @param mixed $value Is always ignored
  53. * @param mixed $context Is always ignored
  54. * @return boolean Returns always TRUE
  55. */
  56. public function isValid($value, $context = null)
  57. {
  58. return true;
  59. }
  60. }