コード例 #1
0
ファイル: Page.php プロジェクト: realitygaps/grav_ynh
 /**
  * Get file object to the page.
  *
  * @return MarkdownFile|null
  */
 public function file()
 {
     if ($this->name) {
         return MarkdownFile::instance($this->filePath());
     }
     return null;
 }
コード例 #2
0
ファイル: Page.php プロジェクト: elwebdeveloper/grav
 /**
  * Get file object to the page.
  *
  * @return MarkdownFile|null
  */
 public function file()
 {
     if ($this->name) {
         // TODO: use CompiledMarkdownFile after fixing issues in it.
         return MarkdownFile::instance($this->filePath());
     }
     return null;
 }