| 1 | <?php |
||
| 21 | class UserStatusContainer extends Container implements ViewPartialProviderInterface |
||
| 22 | { |
||
| 23 | |||
| 24 | /** |
||
| 25 | * View partial name. |
||
| 26 | * @var string |
||
| 27 | */ |
||
| 28 | protected $partial = 'auth/form/user-status-container'; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @see \Core\Form\ViewPartialProviderInterface::getViewPartial() |
||
| 32 | */ |
||
| 33 | public function getViewPartial() |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @see \Core\Form\ViewPartialProviderInterface::setViewPartial() |
||
| 40 | */ |
||
| 41 | public function setViewPartial($partial) |
||
| 46 | |||
| 47 | /** |
||
| 48 | * Initializes the container. |
||
| 49 | * |
||
| 50 | * @see \Zend\Form\Element::init() |
||
| 51 | */ |
||
| 52 | public function init() |
||
| 61 | } |
||
| 62 |