mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 01:01:41 +09:00
87 lines
2.2 KiB
PHP
87 lines
2.2 KiB
PHP
<?php
|
|
/* Copyright (C) NAVER <http://www.navercorp.com> */
|
|
/**
|
|
* @class widgetAdminView
|
|
* @author NAVER (developers@xpressengine.com)
|
|
* @brief admin view class for widget modules
|
|
*/
|
|
class WidgetAdminView extends Widget
|
|
{
|
|
/**
|
|
* @brief Initialization
|
|
*/
|
|
function init()
|
|
{
|
|
$this->setTemplatePath($this->module_path.'tpl');
|
|
}
|
|
|
|
/**
|
|
* @brief Showing a list of widgets
|
|
*/
|
|
function dispWidgetAdminDownloadedList()
|
|
{
|
|
// Set widget list
|
|
$widget_list = WidgetModel::getDownloadedWidgetList();
|
|
|
|
$security = new Security($widget_list);
|
|
$widget_list = $security->encodeHTML('..', '..author..');
|
|
|
|
foreach($widget_list as $no => $widget)
|
|
{
|
|
if($widget->widget)
|
|
{
|
|
$widget_list[$no]->description = nl2br(trim($widget->description));
|
|
}
|
|
else
|
|
{
|
|
unset($widget_list[$no]);
|
|
}
|
|
}
|
|
|
|
Context::set('widget_list', $widget_list);
|
|
Context::set('tCount', count($widget_list));
|
|
|
|
$this->setTemplateFile('downloaded_widget_list');
|
|
}
|
|
|
|
function dispWidgetAdminGenerateCode()
|
|
{
|
|
$oView = getView('widget');
|
|
Context::set('in_admin', true);
|
|
$this->setTemplateFile('widget_generate_code');
|
|
return $oView->dispWidgetGenerateCode();
|
|
}
|
|
|
|
/**
|
|
* @brief For information on direct entry widget popup kkuhim
|
|
*/
|
|
function dispWidgetAdminAddContent()
|
|
{
|
|
$module_srl = Context::get('module_srl');
|
|
if (!$module_srl)
|
|
{
|
|
throw new Rhymix\Framework\Exceptions\InvalidRequest;
|
|
}
|
|
|
|
$document_srl = Context::get('document_srl');
|
|
$oDocument = DocumentModel::getDocument($document_srl);
|
|
Context::set('oDocument', $oDocument);
|
|
|
|
$columnList = array('module_srl', 'mid');
|
|
$module_info = ModuleModel::getModuleInfoByModuleSrl($module_srl, $columnList);
|
|
Context::set('module_info', $module_info);
|
|
|
|
// Editors settings of the module by calling getEditor
|
|
$editor = EditorModel::getModuleEditor('document', $module_srl, $module_srl, 'module_srl', 'content');
|
|
Context::set('editor', $editor);
|
|
|
|
$security = new Security();
|
|
$security->encodeHTML('member_config..');
|
|
|
|
$this->setLayoutPath('./common/tpl');
|
|
$this->setLayoutFile("popup_layout");
|
|
$this->setTemplateFile('add_content_widget');
|
|
}
|
|
}
|
|
/* End of file widget.admin.view.php */
|
|
/* Location: ./modules/widget/widget.admin.view.php */
|