/var/www/vhosts/ihelp.ro/_OLD/vendor/cakephp/cakephp/src/View
NameSizeModeActions
Exception/-0755rm
Form/-0755rm
Helper/-0755rm
Widget/-0755rm
AjaxView.php10980644editdlrm
Cell.php89360644editdlrm
CellTrait.php45240644editdlrm
Helper.php71820644editdlrm
HelperRegistry.php48530644editdlrm
JsonView.php58580644editdlrm
SerializedView.php35580644editdlrm
StringTemplate.php112470644editdlrm
StringTemplateTrait.php28390644editdlrm
View.php504330644editdlrm
ViewBlock.php64450644editdlrm
ViewBuilder.php161570644editdlrm
ViewVarsTrait.php30010644editdlrm
XmlView.php49410644editdlrm
Edit: /var/www/vhosts/ihelp.ro/_OLD/vendor/cakephp/cakephp/src/View/ViewVarsTrait.php (3001B)
_viewBuilder)) { $this->_viewBuilder = new ViewBuilder(); } return $this->_viewBuilder; } /** * Constructs the view class instance based on the current configuration. * * @param string|null $viewClass Optional namespaced class name of the View class to instantiate. * @return \Cake\View\View * @throws \Cake\View\Exception\MissingViewException If view class was not found. */ public function createView(?string $viewClass = null): View { $builder = $this->viewBuilder(); if ($viewClass) { $builder->setClassName($viewClass); } foreach (['name', 'plugin'] as $prop) { if (isset($this->{$prop})) { $method = 'set' . ucfirst($prop); $builder->{$method}($this->{$prop}); } } return $builder->build( [], $this->request ?? null, $this->response ?? null, $this instanceof EventDispatcherInterface ? $this->getEventManager() : null ); } /** * Saves a variable or an associative array of variables for use inside a template. * * @param string|array $name A string or an array of data. * @param mixed $value Value in case $name is a string (which then works as the key). * Unused if $name is an associative array, otherwise serves as the values to $name's keys. * @return $this */ public function set($name, $value = null) { if (is_array($name)) { if (is_array($value)) { $data = array_combine($name, $value); } else { $data = $name; } } else { $data = [$name => $value]; } $this->viewBuilder()->setVars($data); return $this; } }