function __construct(SAPSeleniumApplication &$app, $name)
 {
     parent::__construct($app, $name);
     $this->setContents('title', ucwords(str_replace('/', ' » ', $this->name)));
     $this->pageName = $this->getName();
     $this->className = get_class($this);
 }
示例#2
0
 public function fetch()
 {
     $content = parent::fetch();
     if (SAE_ENABLE_CACHE) {
         $this->cacheLite->save($content, $this->cacheId);
     }
     return $content;
 }