Gc\Document\Model::getView PHP 메소드

getView() 공개 메소드

get View Model
public getView ( ) : Model
리턴 Gc\View\Model
    public function getView()
    {
        if ($this->getData('view') == null) {
            $view = View\Model::fromId($this->getViewId());
            if ($view !== null) {
                $this->setData('view', $view);
            }
        }
        return $this->getData('view');
    }

Usage Example

예제 #1
0
파일: ModelTest.php 프로젝트: gotcms/gotcms
 /**
  * Test
  *
  * @return void
  */
 public function testGetView()
 {
     $this->assertInstanceOf('Gc\\View\\Model', $this->object->getView());
 }