Example #1
0
	/**
	 * Disable the View cache on this object and any/all parents
	 */
	public function disableCache(){
		$this->cacheable = false;
		if($this->parent){
			$this->parent->disableCache();
		}
	}