예제 #1
0
 /**
  * Function returns current template css files or null if there is no template.
  *
  * <p>Note: component must be inited by initComponent method.</p>
  * @return array[string][int]string
  *
  */
 public final function getTemplateCachedData()
 {
     if ($this->__bInited && $this->__template) {
         return $this->__template->GetCachedData();
     } else {
         return null;
     }
 }