mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 01:01:41 +09:00
Fix capitalization of class names
This commit is contained in:
parent
7444bc3f1d
commit
866f9c670d
26 changed files with 26 additions and 26 deletions
|
|
@ -5,7 +5,7 @@
|
|||
* @author NAVER (developers@xpressengine.com)
|
||||
* @brief The admin controller class of the session module
|
||||
*/
|
||||
class sessionAdminController extends session
|
||||
class SessionAdminController extends Session
|
||||
{
|
||||
/**
|
||||
* @brief Initialization
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
* @author NAVER (developers@xpressengine.com)
|
||||
* @brief The admin view class of the session module
|
||||
*/
|
||||
class sessionAdminView extends session
|
||||
class SessionAdminView extends Session
|
||||
{
|
||||
/**
|
||||
* @brief Initialization
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
*
|
||||
* The session management class
|
||||
*/
|
||||
class session extends ModuleObject
|
||||
class Session extends ModuleObject
|
||||
{
|
||||
var $lifetime = 18000;
|
||||
var $session_started = false;
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
* @author NAVER (developers@xpressengine.com)
|
||||
* @brief The controller class of the session module
|
||||
*/
|
||||
class sessionController extends session
|
||||
class SessionController extends Session
|
||||
{
|
||||
/**
|
||||
* @brief Initialization
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
* @author NAVER (developers@xpressengine.com)
|
||||
* @brief The Model class of the session module
|
||||
*/
|
||||
class sessionModel extends session
|
||||
class SessionModel extends Session
|
||||
{
|
||||
/**
|
||||
* @brief Initialization
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
* @author NAVER (developers@xpressengine.com)
|
||||
* @brief The admin controller class of the spamfilter module
|
||||
*/
|
||||
class spamfilterAdminController extends spamfilter
|
||||
class SpamfilterAdminController extends Spamfilter
|
||||
{
|
||||
/**
|
||||
* @brief Initialization
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
* @author NAVER (developers@xpressengine.com)
|
||||
* @brief The admin view class of the spamfilter module
|
||||
*/
|
||||
class spamfilterAdminView extends spamfilter
|
||||
class SpamfilterAdminView extends Spamfilter
|
||||
{
|
||||
/**
|
||||
* @brief Initialization
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
* @author NAVER (developers@xpressengine.com)
|
||||
* @brief The parent class of the spamfilter module
|
||||
*/
|
||||
class spamfilter extends ModuleObject
|
||||
class Spamfilter extends ModuleObject
|
||||
{
|
||||
/**
|
||||
* @brief Additional tasks required to accomplish during the installation
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
* @author NAVER (developers@xpressengine.com)
|
||||
* @brief The controller class for the spamfilter module
|
||||
*/
|
||||
class spamfilterController extends spamfilter
|
||||
class SpamfilterController extends Spamfilter
|
||||
{
|
||||
/**
|
||||
* List of actions to use CAPTCHA.
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
* @author NAVER (developers@xpressengine.com)
|
||||
* @brief The Model class of the spamfilter module
|
||||
*/
|
||||
class spamfilterModel extends spamfilter
|
||||
class SpamfilterModel extends Spamfilter
|
||||
{
|
||||
/**
|
||||
* @brief Initialization
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
* @author NAVER (developers@xpressengine.com)
|
||||
* @brief admin controller class of the tag module
|
||||
*/
|
||||
class tagAdminController extends tag
|
||||
class TagAdminController extends Tag
|
||||
{
|
||||
/**
|
||||
* Save admin config.
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
|
||||
class tagAdminView extends tag
|
||||
class TagAdminView extends Tag
|
||||
{
|
||||
public function dispTagAdminConfig()
|
||||
{
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
* @author NAVER (developers@xpressengine.com)
|
||||
* @brief high class of the tag module
|
||||
*/
|
||||
class tag extends ModuleObject
|
||||
class Tag extends ModuleObject
|
||||
{
|
||||
/**
|
||||
* @brief Implement if additional tasks are necessary when installing
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
* @author NAVER (developers@xpressengine.com)
|
||||
* @brief tag module's controller class
|
||||
*/
|
||||
class tagController extends tag
|
||||
class TagController extends Tag
|
||||
{
|
||||
/**
|
||||
* Parse tags.
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
* @author NAVER (developers@xpressengine.com)
|
||||
* @brief tag model class of the module
|
||||
*/
|
||||
class tagModel extends tag
|
||||
class TagModel extends Tag
|
||||
{
|
||||
/**
|
||||
* Separator regexp cache
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
* @package /modules/trash
|
||||
* @version 0.1
|
||||
*/
|
||||
class trashAdminController extends trash
|
||||
class TrashAdminController extends Trash
|
||||
{
|
||||
/**
|
||||
* object insert to trash
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
* @package /modules/trash
|
||||
* @version 0.1
|
||||
*/
|
||||
class trashAdminView extends trash
|
||||
class TrashAdminView extends Trash
|
||||
{
|
||||
/**
|
||||
* Initialization
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ require_once(RX_BASEDIR.'modules/trash/model/TrashVO.php');
|
|||
* @package /modules/trash
|
||||
* @version 0.1
|
||||
*/
|
||||
class trash extends ModuleObject
|
||||
class Trash extends ModuleObject
|
||||
{
|
||||
/**
|
||||
* Implement if additional tasks are necessary when installing
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
* @package /modules/trash
|
||||
* @version 0.1
|
||||
*/
|
||||
class trashController extends trash
|
||||
class TrashController extends Trash
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
* @package /modules/trash
|
||||
* @version 0.1
|
||||
*/
|
||||
class trashModel extends trash
|
||||
class TrashModel extends Trash
|
||||
{
|
||||
private static $config = NULL;
|
||||
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
* @package /modules/trash
|
||||
* @version 0.1
|
||||
*/
|
||||
class trashView extends trash
|
||||
class TrashView extends Trash
|
||||
{
|
||||
/**
|
||||
* Initialization
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
* @author NAVER (developers@xpressengine.com)
|
||||
* @brief admin view class for widget modules
|
||||
*/
|
||||
class widgetAdminView extends widget
|
||||
class WidgetAdminView extends Widget
|
||||
{
|
||||
/**
|
||||
* @brief Initialization
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
* @author NAVER (developers@xpressengine.com)
|
||||
* @brief widget module's high class
|
||||
*/
|
||||
class widget extends ModuleObject
|
||||
class Widget extends ModuleObject
|
||||
{
|
||||
/**
|
||||
* @brief Implement if additional tasks are necessary when installing
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
* @author NAVER (developers@xpressengine.com)
|
||||
* @brief Controller class for widget modules
|
||||
*/
|
||||
class widgetController extends widget
|
||||
class WidgetController extends Widget
|
||||
{
|
||||
// The results are not widget modify/delete and where to use the flag for
|
||||
// layout_javascript_mode include all the results into the javascript mode Sikkim
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
* @version 0.1
|
||||
* @brief Model class for widget modules
|
||||
*/
|
||||
class widgetModel extends widget
|
||||
class WidgetModel extends Widget
|
||||
{
|
||||
/**
|
||||
* @brief Initialization
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
* @author NAVER (developers@xpressengine.com)
|
||||
* @brief View class of the widget modules
|
||||
*/
|
||||
class widgetView extends widget
|
||||
class WidgetView extends Widget
|
||||
{
|
||||
/**
|
||||
* @brief Initialization
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue