Remove unnecessary header and footer from class files

- 아래에 이미 author 언급이 있으므로 중복되는 저작권 표기는 제거
- 클래스 하단에 불필요한 end of file 표시 제거 (파일 하나에 클래스 하나씩이므로
  파일이 중간에 끊겼다면 클래스가 닫히지 않아 쉽게 알 수 있음)
This commit is contained in:
Kijin Sung 2023-01-30 23:52:23 +09:00
parent 1ab8f3470f
commit dfa1e93c79
36 changed files with 17 additions and 148 deletions

View file

@ -1,5 +1,4 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
/**
* CacheHandler
@ -158,6 +157,3 @@ class CacheHandler extends Handler
return Rhymix\Framework\Cache::clearGroup($keyGroupName);
}
}
/* End of file CacheHandler.class.php */
/* Location: ./classes/cache/CacheHandler.class.php */

View file

@ -1,5 +1,4 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
/**
* Manages Context such as request arguments/environment variables
@ -2869,5 +2868,3 @@ class Context
return self::$_instance->canonical_url;
}
}
/* End of file Context.class.php */
/* Location: ./classes/context/Context.class.php */

View file

@ -1,13 +1,9 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
/**
* @class DisplayHandler
* DisplayHandler
*
* @author NAVER (developers@xpressengine.com)
* DisplayHandler is responsible for displaying the execution result. \n
* Depending on the request type, it can display either HTML or XML content.\n
* Xml content is simple xml presentation of variables in oModule while html content
* is the combination of the variables of oModue and template files/.
*/
class DisplayHandler extends Handler
{
@ -347,5 +343,3 @@ class DisplayHandler extends Handler
}
}
/* End of file DisplayHandler.class.php */
/* Location: ./classes/display/DisplayHandler.class.php */

View file

@ -1,5 +1,4 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
class HTMLDisplayHandler
{
@ -734,5 +733,3 @@ class HTMLDisplayHandler
}
}
}
/* End of file HTMLDisplayHandler.class.php */
/* Location: ./classes/display/HTMLDisplayHandler.class.php */

View file

@ -1,5 +1,4 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
class JSCallbackDisplayHandler
{
@ -21,5 +20,3 @@ class JSCallbackDisplayHandler
</script>', Context::getJSCallbackFunc(), json_encode($variables));
}
}
/* End of file JSCallback.class.php */
/* Location: ./classes/display/JSCallback.class.php */

View file

@ -1,5 +1,4 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
class JSONDisplayHandler
{
@ -74,5 +73,3 @@ class JSONDisplayHandler
return true;
}
}
/* End of file JSONDisplayHandler.class.php */
/* Location: ./classes/display/JSONDisplayHandler.class.php */

View file

@ -1,5 +1,4 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
class VirtualXMLDisplayHandler
{
@ -65,5 +64,3 @@ class VirtualXMLDisplayHandler
}
}
/* End of file VirtualXMLDisplayHandler.class.php */
/* Location: ./classes/display/VirtualXMLDisplayHandler.class.php */

View file

@ -1,5 +1,4 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
class XMLDisplayHandler
{
@ -63,5 +62,3 @@ class XMLDisplayHandler
}
}
/* End of file XMLDisplayHandler.class.php */
/* Location: ./classes/display/XMLDisplayHandler.class.php */

View file

@ -1,9 +1,7 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
/**
* Superclass of the edit component.
* Set up the component variables
* Superclass of the editor component.
*
* @class EditorHandler
* @author NAVER (developers@xpressengine.com)
@ -32,5 +30,3 @@ class EditorHandler extends BaseObject
}
}
/* End of file EditorHandler.class.php */
/* Location: ./classes/editor/EditorHandler.class.php */

View file

@ -1,5 +1,4 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
/**
* A class to handle extra variables used in posts, member and others
@ -605,5 +604,3 @@ class ExtraItem
}
}
/* End of file ExtraVar.class.php */
/* Location: ./classes/extravar/ExtraVar.class.php */

View file

@ -1,5 +1,4 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
/**
* Contains methods for accessing file system
@ -932,6 +931,3 @@ class FileHandler
}
}
}
/* End of file FileHandler.class.php */
/* Location: ./classes/file/FileHandler.class.php */

View file

@ -1,5 +1,4 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
/**
* File abstraction class
@ -158,5 +157,3 @@ class FileObject extends BaseObject
}
}
/* End of file FileObject.class.php */
/* Location: ./classes/file/FileObject.class.php */

View file

@ -1,5 +1,4 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
/**
* Handle front end files
@ -770,5 +769,3 @@ class FrontEndFileHandler extends Handler
}
}
}
/* End of file FrontEndFileHandler.class.php */
/* Location: ./classes/frontendfile/FrontEndFileHandler.class.php */

View file

@ -1,5 +1,4 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
/**
* An abstract class of (*)Handler
@ -10,5 +9,3 @@ class Handler
{
}
/* End of file Handler.class.php */
/* Location: ./classes/handler/Handler.class.php */

View file

@ -1,5 +1,4 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
/**
* - HttpRequest class
@ -255,5 +254,3 @@ class XEHttpRequest
}
}
/* End of file XEHttpRequest.class.php */
/* Location: ./classes/httprequest/XEHttpRequest.class.php */

View file

@ -2,8 +2,6 @@
/**
* Mail class for XE Compatibility
*
* @author Kijin Sung <kijin@kijinsung.com>
*/
class Mail extends Rhymix\Framework\Mail
{
@ -241,5 +239,3 @@ class Mail extends Rhymix\Framework\Mail
}
}
/* End of file Mail.class.php */
/* Location: ./classes/mail/Mail.class.php */

View file

@ -1,5 +1,4 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
/**
* Mobile class

View file

@ -1,15 +1,10 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
/**
* @class ModuleHandler
* @author NAVER (developers@xpressengine.com)
* Handling modules
* ModuleHandler
*
* @remarks This class is to excute actions of modules.
* Constructing an instance without any parameterconstructor, it finds the target module based on Context.
* If there is no act on the found module, excute an action referencing action_forward.
* */
* @author NAVER (developers@xpressengine.com)
*/
class ModuleHandler extends Handler
{
var $method = 'GET';
@ -1472,5 +1467,3 @@ class ModuleHandler extends Handler
}
}
/* End of file ModuleHandler.class.php */
/* Location: ./classes/module/ModuleHandler.class.php */

View file

@ -1,10 +1,9 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
/**
* @class ModuleObject
* ModuleObject
*
* @author NAVER (developers@xpressengine.com)
* base class of ModuleHandler
*/
class ModuleObject extends BaseObject
{
@ -784,5 +783,3 @@ class ModuleObject extends BaseObject
}
}
}
/* End of file ModuleObject.class.php */
/* Location: ./classes/module/ModuleObject.class.php */

View file

@ -1,5 +1,4 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
/**
* Every module inherits from BaseObject class.
@ -323,6 +322,3 @@ class BaseObject
return $this->toBool();
}
}
/* End of file Object.class.php */
/* Location: ./classes/object/Object.class.php */

View file

@ -1,14 +1,9 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
/**
* @class PageHandler
* @author NAVER (developers@xpressengine.com)
* handles page navigation
* @version 0.1
* PageHandler
*
* @remarks Getting total counts, number of pages, current page number, number of items per page,
* this class implements methods and contains variables for page navigation
* @author NAVER (developers@xpressengine.com)
*/
class PageHandler extends Handler implements Iterator
{
@ -146,5 +141,3 @@ class PageHandler extends Handler implements Iterator
$this->point++;
}
}
/* End of file PageHandler.class.php */
/* Location: ./classes/page/PageHandler.class.php */

View file

@ -1,5 +1,4 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
class EmbedFilter
{
@ -77,5 +76,3 @@ class EmbedFilter
// This functionality has been moved to the HTMLFilter class.
}
}
/* End of file : EmbedFilter.class.php */
/* Location: ./classes/security/EmbedFilter.class.php */

View file

@ -1,5 +1,4 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
class IpFilter
{
@ -15,6 +14,3 @@ class IpFilter
}
}
/* End of file : IpFilter.class.php */
/* Location: ./classes/security/IpFilter.class.php */

View file

@ -1,5 +1,4 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
class Password
{
@ -91,5 +90,3 @@ class Password
return Rhymix\Framework\Security::compareStrings($a, $b);
}
}
/* End of file : Password.class.php */
/* Location: ./classes/security/Password.class.php */

View file

@ -1,5 +1,4 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
class Purifier
{
@ -14,5 +13,3 @@ class Purifier
}
}
/* End of file : Purifier.class.php */
/* Location: ./classes/security/Purifier.class.php */

View file

@ -1,12 +1,9 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
/**
* - Security class
* - This class helps to solve security problems.
* Security class
*
* @author NAVER (developers@xpressengine.com)
* @package /classes/security
* @version 0.1
*/
class Security
{
@ -188,5 +185,3 @@ class Security
return !Rhymix\Framework\Security::checkXXE($xml);
}
}
/* End of file : Security.class.php */
/* Location: ./classes/security/Security.class.php */

View file

@ -27,6 +27,3 @@ class UploadFileFilter
return Rhymix\Framework\Filters\FileContentFilter::check($file, $filename);
}
}
/* End of file : UploadFileFilter.class.php */
/* Location: ./classes/security/UploadFileFilter.class.php */

View file

@ -1,13 +1,9 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
/**
* @class TemplateHandler
* Template compiler
*
* @author NAVER (developers@xpressengine.com)
* template compiler
* @version 0.1
* @remarks It compiles template file by using regular expression into php
* code, and XE caches compiled code for further uses
*/
class TemplateHandler
{
@ -1159,5 +1155,3 @@ class TemplateHandler
return '&#x1B;&#x' . strtoupper(bin2hex($char)) . ';';
}
}
/* End of File: TemplateHandler.class.php */
/* Location: ./classes/template/TemplateHandler.class.php */

View file

@ -1,11 +1,9 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
/**
* Validator class
*
* @author NAVER (developers@xpressengine.com)
* @package /classes/validator
* @version 0.1
*/
class Validator
{
@ -853,5 +851,3 @@ class Validator
}
}
/* End of file Validator.class.php */
/* Location: ./classes/validator/Validator.class.php */

View file

@ -1,15 +1,11 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
/**
* @class WidgetHandler
* WidgetHandler
*
* @author NAVER (developers@xpressengine.com)
* @brief Handler class for widget execution
* @remark it is empty for now, it would be removed in the future
*/
class WidgetHandler
{
var $widget_path = '';
}
/* End of file WidgetHandler.class.php */
/* Location: ./classes/widget/WidgetHandler.class.php */

View file

@ -1,5 +1,4 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
/**
* GeneralXmlParser class
@ -102,5 +101,3 @@ class GeneralXmlParser
}
}
/* End of file GeneralXmlParser.class.php */
/* Location: ./classes/xml/GeneralXmlParser.class.php */

View file

@ -1,5 +1,4 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
/**
* XmlGenerator class
@ -72,5 +71,3 @@ class XmlGenerator
}
}
/* End of file XmlGenerator.class.php */
/* Location: ./classes/xml/XmlGenerator.class.php */

View file

@ -1,5 +1,4 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
/**
* filter class traslate xml content into javascript code
@ -424,5 +423,3 @@ class XmlJsFilter extends XeXmlParser
}
}
/* End of file XmlJsFilter.class.php */
/* Location: ./classes/xml/XmlJsFilter.class.php */

View file

@ -1,5 +1,4 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
/**
* XmlLangParser class
@ -275,5 +274,3 @@ class XmlLangParser extends XeXmlParser
}
}
/* End of file XmlLangParser.class.php */
/* Location: ./classes/xml/XmlLangParser.class.php */

View file

@ -1,5 +1,4 @@
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
/**
* Xml_Node_ class
@ -245,6 +244,3 @@ if (!class_exists('XmlParser', false))
{
class_alias('XeXmlParser', 'XmlParser');
}
/* End of file XmlParser.class.php */
/* Location: ./classes/xml/XmlParser.class.php */

View file

@ -1372,6 +1372,3 @@ function reload($isOpener = FALSE)
$reloadScript = $isOpener ? 'window.opener.location.reload();' : 'window.location.reload();';
echo sprintf('<script> %s </script>', $reloadScript);
}
/* End of file func.inc.php */
/* Location: ./config/func.inc.php */