mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-14 00:39:57 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@1000 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
78d85654a1
commit
8ab46aa600
16 changed files with 115 additions and 63 deletions
|
|
@ -13,6 +13,4 @@
|
|||
$lang->cmd_add_poll = "설문 추가";
|
||||
$lang->cmd_del_poll = "설문 제거";
|
||||
$lang->cmd_add_item = "항목 추가";
|
||||
|
||||
$lang->cmd_null_item = "설문조사로 등록할 값이 없습니다.\n다시 설정해주세요";
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -19,49 +19,6 @@
|
|||
$this->component_path = $component_path;
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief 팝업창에서 설문 작성 완료후 저장을 누를때
|
||||
**/
|
||||
function insertPoll() {
|
||||
Context::loadLang($this->component_path.'lang');
|
||||
$stop_year = Context::get('stop_year');
|
||||
$stop_month = Context::get('stop_month');
|
||||
$stop_day = Context::get('stop_day');
|
||||
|
||||
$stop_date = sprintf('%04d%02d%02d235959', $stop_year, $stop_month, $stop_day);
|
||||
|
||||
$vars = Context::getRequestVars();
|
||||
foreach($vars as $key => $val) {
|
||||
if(strpos($key,'tidx')) continue;
|
||||
if(!eregi("^(title|checkcount|item)_", $key)) continue;
|
||||
if(!trim($val)) continue;
|
||||
|
||||
$tmp_arr = explode('_',$key);
|
||||
|
||||
$poll_index = $tmp_arr[1];
|
||||
|
||||
if($tmp_arr[0]=='title') $tmp_args[$poll_index]->title = $val;
|
||||
else if($tmp_arr[0]=='checkcount') $tmp_args[$poll_index]->checkcount = $val;
|
||||
else if($tmp_arr[0]=='item') $tmp_args[$poll_index]->item[] = $val;
|
||||
}
|
||||
|
||||
foreach($tmp_args as $key => $val) {
|
||||
if(!$val->checkcount) $val->checkcount = 1;
|
||||
if($val->title && count($val->item)) $args->poll[] = $val;
|
||||
}
|
||||
|
||||
if(!count($args->poll)) return new Object(-1, 'cmd_null_item');
|
||||
|
||||
$args->stop_date = $stop_date;
|
||||
|
||||
// poll module을 이용해서 DB 에 입력
|
||||
$oPollController = &getController('poll');
|
||||
$output = $oPollController->insertPolls($args);
|
||||
if(!$output->toBool()) return $output;
|
||||
|
||||
$this->add('poll_srl', $output->get('poll_srl'));
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief popup window요청시 popup window에 출력할 내용을 추가하면 된다
|
||||
**/
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<filter name="insert_poll" module="editor" act="procEditorCall" confirm_msg_code="confirm_submit">
|
||||
<filter name="insert_poll" module="poll" act="procInsert" confirm_msg_code="confirm_submit">
|
||||
<form />
|
||||
<parameter />
|
||||
<response callback_func="completeInsertPoll">
|
||||
|
|
|
|||
|
|
@ -27,7 +27,9 @@ function completeInsertPoll(ret_obj) {
|
|||
var poll_srl = ret_obj["poll_srl"];
|
||||
if(!poll_srl) return null;
|
||||
|
||||
var text = "<img src=\"./common/tpl/images/blank.gif\" poll_srl=\""+poll_srl+"\" editor_component=\"poll\" class=\"editor_component_output\" style=\"width:100%;\" />";
|
||||
var text = "<img src=\"./common/tpl/images/blank.gif\" poll_srl=\""+poll_srl+"\" editor_component=\"poll\" class=\"editor_component_output\" style=\"width:400px;height:300px;\" />";
|
||||
|
||||
alert(ret_obj['message']);
|
||||
|
||||
var iframe_obj = opener.editorGetIFrame(opener.editorPrevSrl)
|
||||
opener.editorReplaceHTML(iframe_obj, text);
|
||||
|
|
|
|||
|
|
@ -28,6 +28,7 @@
|
|||
$oEditorController->insertComponent('url_link',true);
|
||||
$oEditorController->insertComponent('image_link',true);
|
||||
$oEditorController->insertComponent('multimedia_link',true);
|
||||
$oEditorController->insertComponent('poll',true);
|
||||
$oEditorController->insertComponent('image_gallery',true);
|
||||
$oEditorController->insertComponent('quotation',true);
|
||||
$oEditorController->insertComponent('table_maker',true);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue