-
-
Save manuakasam/3182360 to your computer and use it in GitHub Desktop.
ZF2 Select Element bound to Object
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace My\Form\Element; | |
use Zend\Form\Element\Select as SelectElement; | |
class DepartmentSelect extends SelectElement | |
{ | |
public function getValue() | |
{ | |
$value = parent::getValue(); | |
return $value->getDepartmentid(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment