コード例 #1
0
 /**
  * Reset the entire cache state from this branch of the tree and traversing down through the children
  */
 public function uncacheAll()
 {
     $this->cache->clear("body");
     $this->cache->clear("append");
     $this->cache->clear("headers");
     $this->cache->clear("dbl_le");
     $this->headers->uncacheAll();
     foreach ($this->children as $id => $child) {
         $this->children[$id]->uncacheAll();
     }
 }