12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <?php
- /**
- *
- * Cube Framework $Id$ wjGj3bGJdRKfONM6h2P+182eI09uPFKTK7vg7mxxK9w=
- *
- * @link http://codecu.be/framework
- * @copyright Copyright (c) 2014 CodeCube SRL
- * @license http://codecu.be/framework/license Commercial License
- *
- * @version 1.0
- */
- /**
- * view resource management class
- */
- namespace Cube\Application\Resource;
- use Cube\View as ViewObject;
- class View extends AbstractResource
- {
- /**
- *
- * view object
- *
- * @var \Cube\View
- */
- protected $_view;
-
- /**
- *
- * get view object
- *
- * @return \Cube\View
- */
- public function getView()
- {
- return $this->_view;
- }
- /**
- *
- * set view object
- *
- * @param \Cube\View $view
- * @return \Cube\Application\Resource\View
- * @throws \InvalidArgumentException
- */
- public function setView($view)
- {
- if (!$view instanceof ViewObject) {
- throw new \InvalidArgumentException("\Cube\Application\Resource\View requires an object of type \Cube\View");
- }
-
- $this->_view = $view;
-
- return $this;
- }
- /**
- *
- * initialize view object based on resource settings
- *
- * @return \Cube\View
- */
- public function init()
- {
- if (!$this->_view instanceof ViewObject) {
- $view = new ViewObject();
- $view->setLayout($this->_options['view']['layout_file'])
- ->setLayoutsPath($this->_options['view']['layouts_path'])
- ->setViewsPath($this->_options['view']['views_path']);
-
- $this->setView($view);
- }
- return $this->getView();
- }
- }
|