Added the zend framework 2 library, the path is specified in line no.26 in zend_modul...
[openemr.git] / interface / modules / zend_modules / library / Zend / Form / Annotation / Options.php
bloba5accda923fd31c9262fce1560d2021f4103d533
1 <?php
2 /**
3 * Zend Framework (http://framework.zend.com/)
5 * @link http://github.com/zendframework/zf2 for the canonical source repository
6 * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
7 * @license http://framework.zend.com/license/new-bsd New BSD License
8 */
10 namespace Zend\Form\Annotation;
12 /**
13 * Options annotation
15 * Allows passing element, fieldset, or form options to the form factory.
16 * Options are used to alter the behavior of the object they address.
18 * The value should be an associative array.
20 * @Annotation
22 class Options extends AbstractArrayAnnotation
24 /**
25 * Retrieve the options
27 * @return null|array
29 public function getOptions()
31 return $this->value;