コード例 #1
0
ファイル: ViewExecutable.php プロジェクト: nsp15/Drupal8
 /**
  * Get the base path used for this view.
  */
 public function getPath()
 {
     if (!empty($this->override_path)) {
         return $this->override_path;
     }
     if (empty($this->display_handler)) {
         if (!$this->setDisplay('default')) {
             return FALSE;
         }
     }
     return $this->display_handler->getPath();
 }