示例#1
0
文件: Content.php 项目: nnmer/october
 /**
  * Loads the object from a file.
  * @param \Cms\Classes\Theme $theme Specifies the theme the object belongs to.
  * @param string $fileName Specifies the file name, with the extension.
  * The file name can contain only alphanumeric symbols, dashes and dots.
  * @return boolean Returns true if the object was successfully loaded. Otherwise returns false.
  */
 public static function load($theme, $fileName)
 {
     if ($obj = parent::load($theme, $fileName)) {
         $obj->parsedMarkup = $obj->parseMarkup();
     }
     return $obj;
 }