/* ***********************************************************
Author : www.drimhitech.com
Create Date : 2022. 12. 01
Subject : °øÅë javascript class
Comment : ¸Þ½ÃÁö ÆäÀÌÁö
------------------------------------------------------------
Modify Date :
Comment :
*********************************************************** */
class MessageClass{
/**
* »ý¼ºÀú
*/
constructor(){
// ¸Þ´º¸®½ºÆ®
this._MENULIST = ["½Ä´çã±â", "¿À´ÃÀǸ޴º", "°í°´ÀǼҸ®", "À̺¥Æ®&´º½º", "#Ç®¹«¿ø¹Ù·Î°¡±â"];
this._MENUHTML = ["
"+this._MENULIST[0]+"
"
, ""+this._MENULIST[1]+"
"
, ""+this._MENULIST[2]+"
"
, ""+this._MENULIST[3]+"
"
, ""
];
// ÆäÀÌÁö ÁÖ¼Ò
this._TODAY = "/plurestaurant/src/php/menu/today.php";
this._WEEK = "/plurestaurant/src/php/menu/week.php";
this._NEWS = "/plurestaurant/src/php/news/news.php";
this._INTRO = "/plurestaurant/src/php/intro/intro.php";
this._MAIN = "/plurestaurant/src/php/main/main_top.php";
// ½ºÅ丮Áö °íÁ¤¹®ÀÚ
this._STOR = "PLUREST_"
// ÇöÀçÀúÀåµÈ ¼±ÅÃµÈ ½Ä´ç ¹®ÀÚ
this._STOR_STORE = "CURRENT_STORE";
// ÇöÀç ½ºÅ丮Áö¿¡ ÀúÀåµÈ NEWS
this._STOR_NEWS = "LEAD_NEWS_STORE";
// ¿À´Ã ÇÏ·ç ±×¸¸º¸±â
this._STOR_POPUP = "EVENT_POPUP_STORE";
// ¸µÅ© URL
this._LINK_VOICE = "https://m2fnc.pulmuone.com/voice/cs/survey/main.fnc";
this._LINK_PULSHOP = "https://shop.pulmuone.co.kr";
}
}