示例#1
0
文件: MainLayout.php 项目: reliv/rcm
 /**
  * Is the layout valid?
  *
  * @param string $value Page to validate
  *
  * @return bool
  */
 public function isValid($value)
 {
     $this->setValue($value);
     if (!$this->layoutManager->isLayoutValid($this->currentSite, $value)) {
         $this->error(self::MAIN_LAYOUT);
         return false;
     }
     return true;
 }