Merge messageMobile class with messageView (fix #1450)

This commit is contained in:
Kijin Sung 2020-10-30 01:10:00 +09:00
parent 8a452f151b
commit bd14589bd9
2 changed files with 37 additions and 76 deletions

View file

@ -19,29 +19,52 @@ class messageView extends message
*/
function dispMessage($detail = null, $location = null)
{
// Get configurations (using module model object)
$oModuleModel = getModel('module');
$this->module_config = $config = $oModuleModel->getModuleConfig('message', $this->module_info->site_srl);
if(!$config)
{
$config = new stdClass();
}
// Get skin configuration
$config = ModuleModel::getModuleConfig('message') ?: new stdClass;
if(!$config->skin)
{
$config->skin = 'xedition';
}
$template_path = sprintf('%sskins/%s', $this->module_path, $config->skin);
if(!$config->mskin)
{
$config->mskin = 'default';
}
// Template path
// Set the template path
if (contains('mobile', get_class($this), false))
{
if($config->mskin === '/USE_RESPONSIVE/')
{
$template_path = sprintf('%sskins/%s/', $this->module_path, $config->skin);
if(!is_dir($template_path))
{
$template_path = sprintf('%sskins/%s/', $this->module_path, 'default');
}
}
else
{
$template_path = sprintf('%sm.skins/%s/', $this->module_path, $config->mskin);
if(!is_dir($template_path))
{
$template_path = sprintf('%sm.skins/%s/', $this->module_path, 'default');
}
}
}
else
{
$template_path = sprintf('%sskins/%s', $this->module_path, $config->skin);
if(!is_dir($template_path))
{
$template_path = sprintf('%sskins/%s/', $this->module_path, 'default');
}
}
$this->setTemplatePath($template_path);
// Get the member configuration
$member_config = $oModuleModel->getModuleConfig('member');
$member_config = ModuleModel::getModuleConfig('member');
Context::set('member_config', $member_config);
// Set a flag to check if the https connection is made when using SSL and create https url
// Set SSL mode (for backward compatibility only)
$ssl_mode = false;
if($member_config->enable_ssl == 'Y')
{