diff --git a/classes/context/Context.class.php b/classes/context/Context.class.php index 3d89a4174..ba2609b27 100644 --- a/classes/context/Context.class.php +++ b/classes/context/Context.class.php @@ -1100,6 +1100,18 @@ } } + /** + * @brief 모든 JS File을 제거 + **/ + function unloadAllJsFiles() { + $oContext = &Context::getInstance(); + return $oContext->_unloadAllJsFiles(); + } + + function _unloadAllJsFiles() { + $this->js_files = array(); + } + /** * @brief javascript filter 추가 **/ @@ -1184,6 +1196,18 @@ } } + /** + * @brief 모든 CSS File을 제거 + **/ + function unloadAllCSSFiles() { + $oContext = &Context::getInstance(); + return $oContext->_unloadAllCSSFiles(); + } + + function _unloadAllCSSFiles() { + $this->css_files = array(); + } + /** * @brief CSS file 목록 return **/