mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 01:01:41 +09:00
226 lines
6.5 KiB
PHP
226 lines
6.5 KiB
PHP
<?php
|
|
/* Copyright (C) NAVER <http://www.navercorp.com> */
|
|
/**
|
|
* documentView class
|
|
* View class of the module document
|
|
*
|
|
* @author NAVER (developers@xpressengine.com)
|
|
* @package /modules/document
|
|
* @version 0.1
|
|
*/
|
|
class documentView extends document
|
|
{
|
|
/**
|
|
* Initialization
|
|
* @return void
|
|
*/
|
|
function init()
|
|
{
|
|
}
|
|
|
|
/**
|
|
* Document printing
|
|
* I make it out to find the geulman;;
|
|
* @return void|Object
|
|
*/
|
|
function dispDocumentPrint()
|
|
{
|
|
// Bring a list of variables needed to implement
|
|
$document_srl = Context::get('document_srl');
|
|
|
|
// module_info not use in UI
|
|
//$oModuleModel = getModel('module');
|
|
//$module_info = $oModuleModel->getModuleInfoByDocumentSrl($document_srl);
|
|
|
|
// Create the document object. If the document module of basic data structures, write it all works .. -_-;
|
|
$oDocumentModel = getModel('document');
|
|
// Creates an object for displaying the selected document
|
|
$oDocument = $oDocumentModel->getDocument($document_srl, $this->grant->manager);
|
|
if(!$oDocument->isExists()) return new Object(-1,'msg_invalid_request');
|
|
// Check permissions
|
|
if(!$oDocument->isAccessible()) return new Object(-1,'msg_not_permitted');
|
|
// Information setting module
|
|
//Context::set('module_info', $module_info); //module_info not use in UI
|
|
// Browser title settings
|
|
Context::setBrowserTitle($oDocument->getTitleText());
|
|
Context::set('oDocument', $oDocument);
|
|
|
|
Context::set('layout','none');
|
|
$this->setTemplatePath($this->module_path.'tpl');
|
|
$this->setTemplateFile('print_page');
|
|
}
|
|
|
|
/**
|
|
* Preview
|
|
* @return void
|
|
*/
|
|
function dispDocumentPreview()
|
|
{
|
|
if(!checkCSRF())
|
|
{
|
|
return new Object(-1, 'msg_invalid_request');
|
|
}
|
|
|
|
if(Context::get('logged_info')->is_admin != 'Y')
|
|
{
|
|
Context::set('content', removeHackTag(Context::get('content')));
|
|
}
|
|
|
|
$this->setTemplatePath($this->module_path.'tpl');
|
|
$this->setTemplateFile('preview_page');
|
|
Context::set('layout', 'none');
|
|
}
|
|
|
|
/**
|
|
* Selected by the administrator for the document management
|
|
* @return void|Object
|
|
*/
|
|
function dispDocumentManageDocument()
|
|
{
|
|
if(!Context::get('is_logged')) return new Object(-1,'msg_not_permitted');
|
|
// Taken from a list of selected sessions
|
|
$flag_list = $_SESSION['document_management'];
|
|
if(count($flag_list))
|
|
{
|
|
foreach($flag_list as $key => $val)
|
|
{
|
|
if(!is_bool($val)) continue;
|
|
$document_srl_list[] = $key;
|
|
}
|
|
}
|
|
|
|
if(count($document_srl_list))
|
|
{
|
|
$oDocumentModel = getModel('document');
|
|
$document_list = $oDocumentModel->getDocuments($document_srl_list, $this->grant->is_admin);
|
|
Context::set('document_list', $document_list);
|
|
}
|
|
|
|
$oModuleModel = getModel('module');
|
|
// The combination of module categories list and the list of modules
|
|
if(count($module_list)>1) Context::set('module_list', $module_categories);
|
|
|
|
$module_srl=Context::get('module_srl');
|
|
Context::set('module_srl',$module_srl);
|
|
$module_info = $oModuleModel->getModuleInfoByModuleSrl($module_srl);
|
|
Context::set('mid',$module_info->mid);
|
|
Context::set('browser_title',$module_info->browser_title);
|
|
|
|
// Select Pop-up layout
|
|
$this->setLayoutPath('./common/tpl');
|
|
$this->setLayoutFile('popup_layout');
|
|
|
|
$this->setTemplatePath($this->module_path.'tpl');
|
|
$this->setTemplateFile('checked_list');
|
|
}
|
|
|
|
/**
|
|
* Trigger method.
|
|
* Additional information realte to document setting
|
|
* @param string $obj
|
|
* @return Object
|
|
*/
|
|
function triggerDispDocumentAdditionSetup(&$obj)
|
|
{
|
|
$current_module_srl = Context::get('module_srl');
|
|
$current_module_srls = Context::get('module_srls');
|
|
|
|
if(!$current_module_srl && !$current_module_srls)
|
|
{
|
|
// Get information of the current module
|
|
$current_module_info = Context::get('current_module_info');
|
|
$current_module_srl = $current_module_info->module_srl;
|
|
if(!$current_module_srl) return new Object();
|
|
}
|
|
|
|
$oModuleModel = getModel('module');
|
|
if($current_module_srl)
|
|
{
|
|
$document_config = $oModuleModel->getModulePartConfig('document', $current_module_srl);
|
|
}
|
|
if(!$document_config)
|
|
{
|
|
$document_config = new stdClass();
|
|
}
|
|
if(!isset($document_config->use_history)) $document_config->use_history = 'N';
|
|
Context::set('document_config', $document_config);
|
|
|
|
$oTemplate = &TemplateHandler::getInstance();
|
|
$tpl = $oTemplate->compile($this->module_path.'tpl', 'document_module_config');
|
|
$obj .= $tpl;
|
|
|
|
return new Object();
|
|
}
|
|
|
|
/**
|
|
* Document temp saved list
|
|
* @return void
|
|
*/
|
|
function dispTempSavedList()
|
|
{
|
|
$this->setLayoutFile('popup_layout');
|
|
|
|
$oMemberModel = getModel('member');
|
|
// A message appears if the user is not logged-in
|
|
if(!$oMemberModel->isLogged()) return $this->stop('msg_not_logged');
|
|
// Get the saved document (module_srl is set to member_srl instead)
|
|
$logged_info = Context::get('logged_info');
|
|
$args = new stdClass();
|
|
$args->member_srl = $logged_info->member_srl;
|
|
$args->statusList = array($this->getConfigStatus('temp'));
|
|
$args->page = (int)Context::get('page');
|
|
$args->list_count = 10;
|
|
|
|
$oDocumentModel = getModel('document');
|
|
$output = $oDocumentModel->getDocumentList($args, true);
|
|
Context::set('total_count', $output->total_count);
|
|
Context::set('total_page', $output->total_page);
|
|
Context::set('page', $output->page);
|
|
Context::set('document_list', $output->data);
|
|
Context::set('page_navigation', $output->page_navigation);
|
|
|
|
$this->setTemplatePath($this->module_path.'tpl');
|
|
$this->setTemplateFile('saved_list_popup');
|
|
}
|
|
|
|
/**
|
|
* Report an improper post
|
|
* @return void
|
|
*/
|
|
function dispDocumentDeclare()
|
|
{
|
|
$this->setLayoutFile('popup_layout');
|
|
$document_srl = Context::get('target_srl');
|
|
|
|
$oMemberModel = getModel('member');
|
|
// A message appears if the user is not logged-in
|
|
if(!$oMemberModel->isLogged())
|
|
{
|
|
return $this->stop('msg_not_logged');
|
|
}
|
|
|
|
// Create the document object. If the document module of basic data structures, write it all works .. -_-;
|
|
$oDocumentModel = getModel('document');
|
|
// Creates an object for displaying the selected document
|
|
$oDocument = $oDocumentModel->getDocument($document_srl, $this->grant->manager, FALSE);
|
|
if(!$oDocument->isExists())
|
|
{
|
|
return new Object(-1,'msg_invalid_request');
|
|
}
|
|
// Check permissions
|
|
if(!$oDocument->isAccessible())
|
|
{
|
|
return new Object(-1,'msg_not_permitted');
|
|
}
|
|
|
|
// Browser title settings
|
|
Context::set('target_document', $oDocument);
|
|
|
|
Context::set('target_srl', $document_srl);
|
|
|
|
$this->setTemplatePath($this->module_path.'tpl');
|
|
$this->setTemplateFile('declare_document');
|
|
}
|
|
}
|
|
/* End of file document.view.php */
|
|
/* Location: ./modules/document/document.view.php */
|