![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/laminas/laminas-view/src/Helper/ |
<?php declare(strict_types=1); namespace Laminas\View\Helper; use Laminas\View\Model\ModelInterface as Model; /** * Helper for storing and retrieving the root and current view model * * @final */ class ViewModel extends AbstractHelper { use DeprecatedAbstractHelperHierarchyTrait; /** @var Model|null */ protected $current; /** @var Model|null */ protected $root; /** * Set the current view model * * @return $this */ public function setCurrent(Model $model) { $this->current = $model; return $this; } /** * Get the current view model * * @return Model|null */ public function getCurrent() { return $this->current; } /** * Is a current view model composed? * * @return bool */ public function hasCurrent() { return $this->current instanceof Model; } /** * Set the root view model * * @return $this */ public function setRoot(Model $model) { $this->root = $model; return $this; } /** * Get the root view model * * @return Model|null */ public function getRoot() { return $this->root; } /** * Is a root view model composed? * * @return bool */ public function hasRoot() { return $this->root instanceof Model; } }