コード例 #1
0
ファイル: Component.php プロジェクト: nsams/koala-framework
 public function getViewCacheSettings()
 {
     $ret = parent::getViewCacheSettings();
     $c = $this->getData()->parent;
     if ($c->getComponent()->getPartialClass($c->componentClass) == 'Kwf_Component_Partial_Id') {
         $ret['enabled'] = false;
     }
     return $ret;
 }
コード例 #2
0
 public function getViewCacheSettings()
 {
     $ret = parent::getViewCacheSettings();
     $ret['cacheTag'] = 'asdf';
     return $ret;
 }