Skip to content
Snippets Groups Projects
Verified Commit dbb34930 authored by Damien's avatar Damien
Browse files

FEAT #7737 Template Cleaning & Refactoring

parent 35141b09
No related branches found
No related tags found
No related merge requests found
Showing
with 829 additions and 2170 deletions
......@@ -132,24 +132,6 @@ if (Prototype.BrowserFeatures.ElementExtensions) {
disablePrototypeJS('hide', pluginsToDisable);
}
function duplicateTemplate(id) {
var r = confirm("Voulez-vous vraiment dupliquer le modèle ?");
if (r) {
$j.ajax({
url : '../../rest/templates/' + id + '/duplicate',
type : 'POST',
dataType : 'json',
data: {},
success: function(answer) {
location.href = "index.php?page=templates_management_controler&mode=up&module=templates&id=" + answer.id + "&start=0&order=asc&order_field=&what=";
}, error: function(err) {
alert("Une erreur s'est produite");
}
});
}
}
function setAttachmentInSignatureBook(id, isVersion) {
$j.ajax({
url : '../../rest/attachments/' + id + '/inSignatureBook',
......
<?php
require 'modules/templates/class/templates_controler.php';
$templatesControler = new templates_controler();
if (!in_array($_REQUEST['fileMimeType'],array('application/msword','application/vnd.openxmlformats-officedocument.wordprocessingml.document','application/vnd.openxmlformats-officedocument.spreadsheetml.sheet','application/vnd.ms-excel','application/vnd.ms-powerpoint','application/vnd.openxmlformats-officedocument.presentationml‌​.slideshow','application/vnd.oasis.opendocument.text','application/vnd.oasis.opendocument.presentation','application/vnd.oasis.opendocument.spreadsheet'))) {
echo "{\"status\":1,\"error_txt\":\""._EXTENSION_NOT_ALLOWED."\"}";
exit();
}
if (isset($_REQUEST['fileContent'])) {
$filename = htmlentities($_REQUEST['fileName'], ENT_NOQUOTES, 'UTF-8');
$filename = preg_replace('#&([A-za-z])(?:acute|cedil|caron|circ|grave|orn|ring|slash|th|tilde|uml);#', '\1', $filename);
$filename = preg_replace('#&([A-za-z]{2})(?:lig);#', '\1', $filename); // pour les ligatures e.g. '&oelig;'
$filename = preg_replace('#[^\w]+#', '_', $filename); // supprime les autres caractères
$fileContent = base64_decode($_REQUEST['fileContent']);
if ($_REQUEST['saveTemplateBase'] == "yes") {
if (is_dir('custom/' . $_SESSION['custom_override_id'] . '/modules/templates/templates/styles')) {
$dir = 'custom/' . $_SESSION['custom_override_id'] . '/modules/templates/templates/styles';
} else {
$dir = 'modules/templates/templates/styles/';
}
$fileNameOnTmp = $filename . '.' . strtolower(
$templatesControler->extractFileExt($_REQUEST['fileName'])
);
$filePathOnTmp = $dir . DIRECTORY_SEPARATOR . $fileNameOnTmp;
$inF = fopen($filePathOnTmp, 'w');
fwrite($inF, $fileContent);
fclose($inF);
}
$fileNameOnTmp ='cm_tmp_file_' . $_SESSION['user']['UserId'] . '_' . rand() . '.' . strtolower(
$templatesControler->extractFileExt($_REQUEST['fileName'])
);
$filePathOnTmp = $_SESSION['config']['tmppath'] . DIRECTORY_SEPARATOR . $fileNameOnTmp;
$inF = fopen($filePathOnTmp, 'w');
fwrite($inF, $fileContent);
fclose($inF);
$_SESSION['m_admin']['templates']['current_style'] = $filePathOnTmp;
$_SESSION['m_admin']['templates']['template_style'] = $filename;
echo "{\"status\" : 0}";
} else {
echo "{\"status\" : 1}";
}
exit;
<?php
if (isset($_REQUEST['template_style']) && !empty($_REQUEST['template_style'])) {
for (
$cptStyle = 0;
$cptStyle < count($_SESSION['m_admin']['templatesStyles']);
$cptStyle ++
) {
if (
$_SESSION['m_admin']['templatesStyles'][$cptStyle]['fileExt']
. ': ' . $_SESSION['m_admin']['templatesStyles'][$cptStyle]['fileName']
== $_REQUEST['template_style']
) {
$_SESSION['m_admin']['templates']['current_style']
= $_SESSION['m_admin']['templatesStyles'][$cptStyle]['filePath'];
$_SESSION['m_admin']['templates']['template_style'] = $_REQUEST['template_style'];
}
}
echo "{status : 0, " . $_SESSION['m_admin']['templates']['current_style'] . "}";
exit();
} else {
echo "{status : 1}";
}
exit;
<?php
/*
* Copyright 2008-2012 Maarch
*
* This file is part of Maarch Framework.
*
* Maarch Framework is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Maarch Framework is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Maarch Framework. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* File : choose_template.php
*
* Pop up to choose a document template for an answer in the process
*
* @since 10/2007
* @license GPL
* @author Claire Figueras <dev@maarch.org>
*/
$core_tools = new core_tools();
$core_tools->test_user();
$core_tools->load_lang();
require_once 'modules/templates/templates_tables_definition.php';
if (isset($_REQUEST['template']) && !empty($_REQUEST['template'])) {
require_once('core/class/class_security.php');
$sec = new security();
$objectTable = $sec->retrieve_table_from_coll($_REQUEST['coll_id']);
require_once('modules/templates/class/templates_controler.php');
$templates_controler = new templates_controler();
$template = $templates_controler->get($_REQUEST['template']);
if ($template->template_type == 'HTML') {
header(
'location: ' . $_SESSION['config']['businessappurl']
. 'index.php?display=true&module=templates&page=generate_attachment_html&mode=add&template='
. $_REQUEST['template'] . '&res_id=' . $_REQUEST['res_id']
. '&coll_id=' . $_REQUEST['coll_id']
);
} else {
header(
'location: ' . $_SESSION['config']['coreurl']
. 'modules/content_management/applet_launcher.php?objectType=attachmentFromTemplate'
. '&objectId=' . $_REQUEST['template'] . '&objectTable=' . $objectTable
. '&resMaster=' . $_REQUEST['res_id']
);
}
exit();
}
$db = new Database();
$stmt = $db->query(
"select * from "
. _TEMPLATES_TABLE_NAME . " t, "
. _TEMPLATES_ASSOCIATION_TABLE_NAME . " ta where "
. "t.template_id = ta.template_id and ta.value_field = ? ", array($_REQUEST['entity'])
);
$templates = array();
while($res = $stmt->fetchObject())
{
array_push(
$templates, array(
'ID' => $res->template_id,
'LABEL' => $res->template_label,
'TYPE' => $res->template_type,
)
);
}
$core_tools->load_html();
$time = $core_tools->get_session_time_expire();
//here we building the header
$core_tools->load_header(_CHOOSE_TEMPLATE, true, false);
?>
<body id="pop_up" onload="setTimeout(window.close, <?php echo $time;?>*60*1000);">
<h2 class="tit"><?php echo _CHOOSE_TEMPLATE;?> </h2>
<div align="center"><b><?php functions::xecho($erreur);?></b></div>
<form enctype="multipart/form-data" method="post" name="attachment" action="<?php
echo $_SESSION['config']['businessappurl'];
?>index.php?display=true&module=templates&page=choose_template">
<input type="hidden" name="display" value="true" />
<input type="hidden" name="module" value="templates" />
<input type="hidden" name="page" value="choose_template" />
<input type="hidden" name="res_id" id="res_id" value="<?php
functions::xecho($_REQUEST['res_id']);
?>" />
<input type="hidden" name="coll_id" id="coll_id" value="<?php
functions::xecho($_REQUEST['coll_id']);
?>" />
<p><label><?php echo _PLEASE_SELECT_TEMPLATE;?> :</label></p>
<br/>
<p>
<select name="template" id="template" style="width:150px" onchange="this.form.submit();">
<option value=""></option>
<?php
for ($i=0;$i<count($templates);$i++) {
?>
<option value="<?php
functions::xecho($templates[$i]['ID']);
?>"><?php
functions::xecho($templates[$i]['TYPE'] . ' : '
. $templates[$i]['LABEL']);
?></option>
<?php
}
?>
</select>
</p>
<br/>
<p class="buttons">
<input type="button" value="<?php
echo _CANCEL;
?>" name="cancel" class="button" onclick="self.close();"/>
</form>
<?php $core_tools->load_js();?>
</body>
</html>
<?php
/*
* Copyright 2008-2015 Maarch
*
* This file is part of Maarch Framework.
*
* Maarch Framework is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Maarch Framework is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Maarch Framework. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* File : generate_attachment_html.php.
*
* Form to generate an attachment to a mail with an existing template
*
* @since 10/2007
*
* @license GPL
* @author Claire Figueras <dev@maarch.org>
* @author Laurent Giovannoni <dev@maarch.org>
*/
//require_once('modules/templates/class/class_modules_tools.php');
require_once 'modules/templates/class/templates_controler.php';
require_once 'modules/templates/templates_tables_definition.php';
require_once 'core/class/class_security.php';
$core_tools = new core_tools();
$core_tools->test_user();
$core_tools->load_lang();
$db = new Database();
$templates_controler = new templates_controler();
$answer = array();
$answer['TITLE'] = '';
$answer['CONTENT'] = '';
$answer['TEMPLATE_ID'] = '';
$id = '';
$res_id = '';
$coll_id = '';
$func = new functions();
if (isset($_REQUEST['coll_id']) && !empty($_REQUEST['coll_id'])) {
$coll_id = $_REQUEST['coll_id'];
}
if (isset($_REQUEST['res_id']) && !empty($_REQUEST['res_id'])) {
$res_id = $_REQUEST['res_id'];
}
if (isset($_REQUEST['mode']) && !empty($_REQUEST['mode'])) {
$mode = $_REQUEST['mode'];
} else {
$mode = '';
$_SESSION['error'] .= _NO_MODE_DEFINED.'.<br/>';
}
if (isset($_GET['template']) && !empty($_GET['template'])) {
$answer['TEMPLATE_ID'] = trim($_GET['template']);
}
if (isset($_GET['id']) && !empty($_GET['id'])) {
$id = trim($_GET['id']);
$stmt = $db->query('select title from '
.$_SESSION['tablename']['attach_res_attachments']
.' where res_id = ? ', array($id));
$res = $stmt->fetchObject();
$answer['TITLE'] = $func->show_string($res->title);
}
if (!empty($answer['TEMPLATE_ID']) && $mode == 'add') {
$template = $templates_controler->get($answer['TEMPLATE_ID']);
if ($template->template_id == '') {
$_SESSION['error'] .= _TEMPLATE.' '._UNKNOWN.'<br/>';
} else {
$line = $stmt->fetchObject();
$answer['TEMPLATE_ID'] = $template->template_id;
$answer['MODEL_LABEL'] = $func->show_string($template->template_label);
$answer['TITLE'] = $_SESSION['courrier']['res_id'].'_'
.$answer['MODEL_LABEL'].'_'.date('dmY');
$sec = new security();
$res_view = $sec->retrieve_view_from_coll_id($coll_id);
$params = array(
'res_id' => $res_id,
'coll_id' => $coll_id,
'res_view' => $res_view,
);
$answer['CONTENT'] = $templates_controler->merge($template->template_id, $params, 'content');
}
} elseif (!empty($id) && $mode == 'up') {
$stmt = $db->query('select title, res_id, path, docserver_id, filename from '
.$_SESSION['tablename']['attach_res_attachments'].' where res_id = ? ', array($id));
if ($stmt->rowCount() < 1) {
$_SESSION['error'] .= _FILE.' '._UNKNOWN.'.<br/>';
} else {
$line = $stmt->fetchObject();
$docserver = $line->docserver_id;
$path = $line->path;
$filename = $line->filename;
$answer['TITLE'] = $func->show_string($line->title);
$stmt = $db->query('select path_template from '.$_SESSION['tablename']['docservers']
.' where docserver_id = ?', array($docserver));
$line_doc = $stmt->fetchObject();
$docserver = $line_doc->path_template;
$file = $docserver.$path.strtolower($filename);
$file = str_replace('#', DIRECTORY_SEPARATOR, $file);
$myfile = fopen($file, 'r');
$data = fread($myfile, filesize($file));
fclose($myfile);
$answer['CONTENT'] = $func->show_string($data);
}
} else {
$_SESSION['error'] .= _TEMPLATE_OR_ANSWER_ERROR.'.<br/>';
}
$core_tools->load_html();
$time = $core_tools->get_session_time_expire();
//here we building the header
if ($_REQUEST['mode'] == 'add') {
$title = _GENERATE_ANSWER.' : '.$answer['TITLE'];
} elseif ($_REQUEST['mode'] == 'up') {
$title = _ANSWER.' : '.$answer['TITLE'];
} else {
$title = _GENERATE_ANSWER;
}
$core_tools->load_header($title, true, false);
?>
<body onload="moveTo(0,0);resizeTo(screen.width, screen.height);setTimeout(window.close, <?php
echo $time; ?>*60*1000);">
<?php
$_SESSION['mode_editor'] = false;
$height = '400';
include 'modules/templates/load_editor.php'; ?>
<div class="error"><?php functions::xecho($_SESSION['error']); $_SESSION['error'] = ''; ?></div>
<div align="center">
<form name="frmtemplate" id="frmtemplate" method="post" action="<?php
echo $_SESSION['config']['businessappurl'];
?>index.php?display=true&module=templates&page=manage_generated_attachment&mode=<?php
echo $mode; ?>">
<input type="hidden" name="display" value="true" />
<input type="hidden" name="module" value="templates" />
<input type="hidden" name="page" value="manage_generated_attachment" />
<?php
if ($mode == 'up') {
?>
<input type="hidden" name="id" id="id" value="<?php functions::xecho($id); ?>" />
<?php
}
?>
<input type="hidden" name="res_id" id="res_id" value="<?php
functions::xecho($res_id); ?>" />
<input type="hidden" name="coll_id" id="coll_id" value="<?php
functions::xecho($coll_id); ?>" />
<input type="hidden" name="template_id" id="template_id" value="<?php
functions::xecho($answer['TEMPLATE_ID']); ?>" />
<input type="hidden" name="template_label" id="template_label" value="<?php
functions::xecho($answer['MODEL_LABEL']); ?>" />
<textarea name="template_content" style="width:100%" rows="50">
<?php functions::xecho($answer['CONTENT']); ?>
</textarea>
<br/>
<p>
<label><?php echo _ANSWER_TITLE; ?> :</label>
<input type="text" name="answer_title" id="answer_title" value="<?php
functions::xecho($answer['TITLE']); ?>" style="width: 250px;" />
</p>
<p>
<input type="submit" name="submit" id="submit" value="<?php
echo _VALIDATE; ?>" class="button"/>
<input type="button" name="cancel" id="cancel" value="<?php
echo _CANCEL;?>" class="button" onclick="window.close();" />
</p>
</form>
</div>
<?php $core_tools->load_js();?>
</body>
</html>
......@@ -12,79 +12,6 @@ function show_templates(show)
}
}
function show_special_form(elem_to_view, elem_to_hide1)
{
var elem_1 = window.document.getElementById(elem_to_view);
var elem_2 = window.document.getElementById(elem_to_hide1);
if (elem_1 != null) {
elem_1.style.display = "block";
}
if (elem_2 != null) {
elem_2.style.display = "none";
}
}
function show_special_form_3_elements(elem_to_view, elem_to_hide1, elem_to_hide2)
{
var elem_0 = window.document.getElementById(elem_to_view);
var elem_1 = window.document.getElementById(elem_to_hide1);
var elem_2 = window.document.getElementById(elem_to_hide2);
if (elem_0 != null) {
elem_0.style.display = "block";
}
if (elem_1 != null) {
elem_1.style.display = "none";
}
if (elem_2 != null) {
elem_2.style.display = "none";
}
}
function changeStyle(style_id, path_to_script)
{
//window.alert(path_to_script);
new Ajax.Request(path_to_script,
{
method:'post',
parameters: {template_style: style_id.value},
onSuccess: function(answer){
eval("response = "+answer.responseText)
},
onFailure: function() {
$('modal').innerHTML = '<div class="error"><?php echo _SERVER_ERROR;?></div>'+form_txt;
form.query_name.value = this.name;
}
});
}
function setradiobutton(target)
{
$j("#html,#office,#txt,#span_html,#span_office,#span_txt").css({"display":"inline"});
$j("#template_attachment_type_tr").hide();
if(target=="notes") {
$j("#html,#span_html,#office,#span_office").hide();
$j("#txt").click();
}else if(target=="sendmail") {
$j("#office,#span_office").hide();
$j("#html").click();
} else if(target=="notifications") {
$j("#txt,#span_txt,#office,#span_office").hide();
$j("#html").click();
} else if (target=="attachments"){
$j("#txt,#span_txt,#html,#span_html").hide();
$j("#office").click();
$j("#template_attachment_type_tr").css({"display":"inline"});
} else if(target=="doctypes") {
$j("#txt,#span_txt,#office,#span_office").hide();
$j("#html").click();
}
if (target != "attachments") {
$j("#template_attachment_type").selectedIndex="0";
}
}
function select_template(path_to_script, attachment_type)
{
......@@ -129,43 +56,3 @@ function select_template(path_to_script, attachment_type)
}
});
}
function addTemplateBase(file)
{
// if (confirm('En cliquant sur ok, le modèle sera ajouté dans la liste des natures de modèle.')) {
// saveTemplateBase = "yes";
// }else{
saveTemplateBase = "no";
// }
var reader = new FileReader();
reader.readAsDataURL(file.files[0]);
reader.onload = function () {
base64File = reader.result.replace(/^[^,]*,/, '');
$j.ajax({
url: 'index.php?display=true&module=templates&page=addTemplateBase',
type: 'POST',
dataType: 'JSON',
data: {
fileName: file.files[0].name,
fileMimeType : file.files[0].type,
fileContent: base64File,
saveTemplateBase : saveTemplateBase,
},
success: function (response) {
if (response.status == 0) {
$j('#template_style').hide();
$j('#addTemplate').val(file.files[0].name);
$j('#addTemplate').show();
$j('#templateEditTr').hide();
} else {
alert(response.error_txt);
}
},
error: function (error) {
console.log(error);
alert(error);
}
});
};
}
\ No newline at end of file
<?php
/**
* File : manage_generated_attachment.php
*
* Result of the generate answer form
*
* @package Maarch LetterBox 2.3
* @version 1.0
* @since 10/2007
* @license GPL
* @author Claire Figueras <dev@maarch.org>
*/
/*require_once("core".DIRECTORY_SEPARATOR."class".DIRECTORY_SEPARATOR."class_request.php");
require_once("core".DIRECTORY_SEPARATOR."class".DIRECTORY_SEPARATOR."class_resource.php");
require_once "core/class/class_security.php";
$core_tools = new core_tools();
$core_tools->test_user();
$core_tools->load_lang();
$func = new functions();
if (empty($_REQUEST['mode']) || !isset($_REQUEST['mode'])) {
$_SESSION['error'] .= _NO_MODE_DEFINED.'.<br/>';
header("location: ".$_SESSION['config']['businessappurl']."index.php?display=true&module=templates&page=generate_attachment_html&template=".$_REQUEST['template_id']);
exit;
} else {
$conn = new Database();
if (empty($_REQUEST['template_content']) || !isset($_REQUEST['template_content'])) {
$_SESSION['error'] .= _NO_CONTENT.'.<br/>';
if ($_REQUEST['mode'] == 'add') {
header("location: ".$_SESSION['config']['businessappurl']."index.php?display=true&module=templates&page=generate_attachment_html&template=".$_REQUEST['template_id']."&mode=".$_REQUEST['mode']);
} else {
header("location: ".$_SESSION['config']['businessappurl']."index.php?display=true&module=templates&page=generate_attachment_html&id=".$_REQUEST['id']."&mode=".$_REQUEST['mode']);
}
exit;
} else {
if ($_REQUEST['mode'] == "add") {
if (empty($_REQUEST['answer_title']) || !isset($_REQUEST['answer_title'])) {
$_REQUEST['answer_title'] = $_SESSION['courrier']['res_id']."_".$_REQUEST['template_label'].date("dmY");
}
$_REQUEST['answer_title'] = str_replace("\\", "", $_REQUEST['answer_title']);
$_REQUEST['answer_title'] = str_replace("/", "", $_REQUEST['answer_title']);
$_REQUEST['answer_title'] = str_replace("..", "", $_REQUEST['answer_title']);
$path_tmp = $_SESSION['config']['tmppath'].DIRECTORY_SEPARATOR.$_REQUEST['answer_title'].".maarch";
$myfile = fopen($path_tmp, "w");
if (!$myfile) {
$_SESSION['error'] .= _FILE_OPEN_ERROR.'.<br/>';
header("location: ".$_SESSION['config']['businessappurl']."index.php?display=true&module=templates&page=generate_attachment_html&template=".$_REQUEST['template_id']);
exit;
}
fwrite($myfile, $_REQUEST['template_content']);
fclose($myfile);
//DOCSERVER
if (!isset($_SESSION['collection_id_choice'])
|| empty($_SESSION['collection_id_choice'])
) {
$_SESSION['collection_id_choice']
= $_SESSION['user']['collections'][0];
}
$tmpPath = $path_tmp;
$fileSize = filesize($tmpPath);
require_once('core' . DIRECTORY_SEPARATOR . 'class'
. DIRECTORY_SEPARATOR . 'docservers_controler.php');
$docserverControler = new docservers_controler();
$fileInfos = array(
"tmpDir" => $_SESSION['config']['tmppath'],
"size" => $fileSize,
"format" => 'maarch',
"tmpFileName" => $_REQUEST['answer_title'] . '.maarch',
);
$storeResult = array();
$storeResult = $docserverControler->storeResourceOnDocserver(
$_SESSION['collection_id_choice'], $fileInfos
);
if (isset($storeResult['error']) && $storeResult['error'] <> "") {
$_SESSION['error'] = $storeResult['error'];
} else {
$pathTemplate = $storeResult['path_template'];
$destinationDir = $storeResult['destination_dir'];
$docserverId = $storeResult['docserver_id'];
$fileDestinationName = $storeResult['file_destination_name'];
}
//INDEXING
$res_attach = new resource();
$_SESSION['data'] = array();
array_push($_SESSION['data'], array('column' => "typist", 'value' => $_SESSION['user']['UserId'], 'type' => "string"));
array_push($_SESSION['data'], array('column' => "format", 'value' => 'maarch', 'type' => "string"));
array_push($_SESSION['data'], array('column' => "docserver_id", 'value' => $docserverId, 'type' => "string"));
array_push($_SESSION['data'], array('column' => "status", 'value' => 'NEW', 'type' => "string"));
array_push($_SESSION['data'], array('column' => "offset_doc", 'value' => ' ', 'type' => "string"));
array_push($_SESSION['data'], array('column' => "logical_adr", 'value' => ' ', 'type' => "string"));
array_push($_SESSION['data'], array('column' => "title", 'value' => $_REQUEST['answer_title'], 'type' => "string"));
array_push($_SESSION['data'], array('column' => "coll_id", 'value' => $_SESSION['collection_id_choice'], 'type' => "string"));
array_push($_SESSION['data'], array('column' => "res_id_master", 'value' => $_SESSION['doc_id'], 'type' => "integer"));
array_push($_SESSION['data'], array('column' => "type_id", 'value' => 0, 'type' => "int"));
$id = $res_attach->load_into_db(
$_SESSION['tablename']['attach_res_attachments'],
$destinationDir,
$fileDestinationName,
$pathTemplate,
$docserverId,
$_SESSION['data'],
$_SESSION['config']['databasetype']
);
if ($id == false) {
$_SESSION['error'] = $res_attach->get_error();
header("location: ".$_SESSION['config']['businessappurl']."index.php?display=true&module=templates&page=generate_attachment_html&template=".$_REQUEST['template_id']."&mode=".$_REQUEST['mode']);
exit();
} else {
if ($_SESSION['history']['attachadd'] == "true") {
require_once("core".DIRECTORY_SEPARATOR."class".DIRECTORY_SEPARATOR."class_history.php");
$hist = new history();
//$_SESSION['error'] = _NEW_ATTACH_ADDED;
$hist->add($_SESSION['tablename']['attach_res_attachments'], $id, "ADD", 'attachadd', _NEW_ATTACH_ADDED." (".$_REQUEST['answer_title'].") ", $_SESSION['config']['databasetype'],'attachments');
$sec = new security();
$view = $sec->retrieve_view_from_coll_id($_SESSION['collection_id_choice']);
$hist->add($view, $_SESSION['doc_id'], "ADD", 'attachadd', ucfirst(_DOC_NUM) . $id . ' ' . _NEW_ATTACH_ADDED . ' ' . _TO_MASTER_DOCUMENT . $_SESSION['doc_id'], $_SESSION['config']['databasetype'], 'apps');
}
}
if (empty($_SESSION['error']) || $_SESSION['error'] == _NEW_ATTACH_ADDED) {
?>
<script type="text/javascript">
var eleframe1 = window.opener.top.document.getElementById('list_attach');
eleframe1.src = '<?php echo $_SESSION['config']['businessappurl'];?>index.php?display=true&module=attachments&page=frame_list_attachments';
window.top.close();
</script>
<?php
exit();
}
} else {
//mode = up
if (empty($_REQUEST['id']) || !isset($_REQUEST['id'])) {
$_SESSION['error'] .= _ANSWER_OPEN_ERROR.'.<br/>';
header("location: ".$_SESSION['config']['businessappurl']."index.php?display=true&module=templates&page=generate_attachment_html&template=".$_REQUEST['template_id']);
exit;
} else {
$stmt = $conn->query("select docserver_id, path, filename from ".$_SESSION['tablename']['attach_res_attachments']." where res_id = ? ",
array($_REQUEST['id'])
);
if ($stmt->rowCount() == 0) {
$_SESSION['error'] = _NO_DOC_OR_NO_RIGHTS."...";
?>
<script type="text/javascript">
var eleframe1 = window.opener.top.frames['process_frame'].document.getElementById('list_attach');
eleframe1.src = '<?php echo $_SESSION['config']['businessappurl'];?>index.php?display=true&module=attachments&page=frame_list_attachments';
window.top.close();
</script>
<?php
exit;
} else {
$line = $stmt->fetchObject();
$docserver = $line->docserver_id;
$path = $line->path;
$filename = $line->filename;
$stmt = $conn->query("select path_template from ".$_SESSION['tablename']['docservers']." where docserver_id = ? ",
array($docserver)
);
$line_doc = $stmt->fetchObject();
$docserver = $line_doc->path_template;
$file = $docserver.$path.strtolower($filename);
$file = str_replace("#",DIRECTORY_SEPARATOR,$file);
$myfile = fopen($file, "w");
if (!$myfile) {
$_SESSION['error'] .= _FILE_OPEN_ERROR.'.<br/>';
header("location: ".$_SESSION['config']['businessappurl']."index.php?display=true&module=templates&page=generate_attachment_html&id=".$_REQUEST['id']);
exit;
}
fwrite($myfile, $_REQUEST['template_content']);
fclose($myfile);
$stmt = $conn->query("update ".$_SESSION['tablename']['attach_res_attachments']." set title = ? where res_id = ? ",
array($_REQUEST['answer_title'], $_REQUEST['id'])
);
if ($_SESSION['history']['attachup'] == "true") {
require_once("core".DIRECTORY_SEPARATOR."class".DIRECTORY_SEPARATOR."class_history.php");
$hist = new history();
$hist->add($_SESSION['tablename']['attach_res_attachments'], $_SESSION['courrier']['res_id'],"UP", 'attachup', _ANSWER_UPDATED." (".$_SESSION['courrier']['res_id'].")", $_SESSION['config']['databasetype'],'attachments');
}
?>
<script type="text/javascript">
var eleframe1 = window.opener.top.document.getElementById('list_attach');
eleframe1.src = '<?php echo $_SESSION['config']['businessappurl'];?>index.php?display=true&module=attachments&page=frame_list_attachments';
window.top.close();
</script>
<?php
exit();
}
}
}
}
}*/
<?php
/*
* Copyright 2008-2012 Maarch
*
* This file is part of Maarch Framework.
*
* Maarch Framework is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Maarch Framework is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Maarch Framework. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* @brief List of templates for autocompletion
*
*
* @file
* @author Laurent Giovannoni <dev@maarch.org>
* @date $date$
* @version $Revision$
* @ingroup templates
*/
require_once 'modules/templates/templates_tables_definition.php';
require_once 'core/admin_tools.php';
$db = new Database();
if ($_SESSION['config']['databasetype'] == 'POSTGRESQL') {
$stmt = $db->query("select template_label as tag from "
. _TEMPLATES_TABLE_NAME . " where template_label ilike ? order by template_label",
array('%' . $_REQUEST['what'].'%')
);
} else {
$stmt = $db->query("select template_label as tag from "
. _TEMPLATES_TABLE_NAME . " where template_label like ? order by template_label",
array($_REQUEST['what'] . '%')
);
}
At_showAjaxList($stmt, $_REQUEST['what']);
This diff is collapsed.
<?php
/*
* Copyright 2008-2012 Maarch
*
* This file is part of Maarch Framework.
*
* Maarch Framework is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Maarch Framework is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Maarch Framework. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* @brief Contains the template Object (herits of the BaseObject class)
*
*
* @file
* @author Laurent Giovannoni
* @date $date$
* @version $Revision$
* @ingroup templates
*/
$sessionName = 'templates';
$pageName = 'templates_management_controler';
$tableName = 'templates';
$idName = 'template_id';
$mode = 'add';
$core = new core_tools();
$core->load_lang();
$core->test_admin('admin_templates', 'templates');
if (isset($_REQUEST['mode']) && !empty($_REQUEST['mode'])) {
$mode = $_REQUEST['mode'];
} else {
$mode = 'list';
}
try{
require_once('modules/templates/class/templates_controler.php');
require_once('core/class/class_request.php');
require_once('core/admin_tools.php');
if ($mode == 'list') {
require_once('modules/templates/lang/fr.php');
require_once(
'apps/' . $_SESSION['config']['app_id']
. '/class/class_list_show.php'
);
}
} catch (Exception $e) {
functions::xecho($e->getMessage());
}
if (isset($_REQUEST['submit'])) {
// Action to do with db
validate_cs_submit($mode);
} else {
// Display to do
if (isset($_REQUEST['id']) && !empty($_REQUEST['id']))
$template_id = $_REQUEST['id'];
$state = true;
switch ($mode) {
case 'up' :
$state = display_up($template_id);
location_bar_management($mode);
break;
case 'add' :
display_add();
location_bar_management($mode);
break;
case 'del' :
display_del($template_id);
break;
case 'list' :
$templates_list = display_list();
location_bar_management($mode);
break;
case 'allow' :
display_enable($template_id);
location_bar_management($mode);
case 'ban' :
display_disable($template_id);
location_bar_management($mode);
}
$checkedOFFICE = '';
$checkedHTML = '';
if (
$_SESSION['m_admin']['templates']['template_type'] == ''
|| $_SESSION['m_admin']['templates']['template_type'] == 'OFFICE'
) {
$checkedOFFICE = 'checked="checked"';
} elseif ($_SESSION['m_admin']['templates']['template_type'] == 'HTML') {
$checkedHTML = 'checked="checked"';
} elseif ($_SESSION['m_admin']['templates']['template_type'] == 'TXT') {
$checkedTXT = 'checked="checked"';
}
include('templates_management.php');
}
/**
* Initialize session variables
*/
function init_session()
{
$_SESSION['m_admin']['templates'] = array();
$_SESSION['m_admin']['templatesStyles'] = array();
$_SESSION['m_admin']['templatesTargets'] = array();
$_SESSION['m_admin']['templatesDatasources'] = array();
$_SESSION['m_admin']['templatesEntities'] = array();
$_SESSION['m_admin']['templatesEntitiesOrg'] = array();
$_SESSION['m_admin']['templatesEntitiesSelected'] = array();
}
/**
* Management of the location bar
*/
function location_bar_management($mode)
{
$pageName = 'templates_management_controler';
$page_labels = array(
'add' => _ADDITION,
'up' => _MODIFICATION,
'list' => _TEMPLATES_LIST
);
$page_ids = array(
'add' => 'template_add',
'up' => 'template_up',
'list' => 'templates_list'
);
$init = false;
if (isset($_REQUEST['reinit']) && $_REQUEST['reinit'] == 'true')
$init = true;
$level = '';
if (
isset($_REQUEST['level'])
&& ($_REQUEST['level'] == 2
|| $_REQUEST['level'] == 3
|| $_REQUEST['level'] == 4
|| $_REQUEST['level'] == 1)
) {
$level = $_REQUEST['level'];
}
$page_path = $_SESSION['config']['businessappurl'] . 'index.php?page='
. $pageName . '&module=templates&mode=' . $mode;
$page_label = $page_labels[$mode];
$page_id = $page_ids[$mode];
$ct=new core_tools();
$ct->manage_location_bar($page_path, $page_label, $page_id, $init, $level);
}
/**
* Validate a submit (add or up),
* up to saving object
*/
function validate_cs_submit($mode)
{
$pageName = 'templates_management_controler';
$templatesControler = new templates_controler();
$status = array();
$status['order'] = $_REQUEST['order'];
$status['order_field'] = $_REQUEST['order_field'];
$status['what'] = $_REQUEST['what'];
$status['start'] = $_REQUEST['start'];
$templates = new templates();
if (isset($_REQUEST['id'])) $templates->template_id = $_REQUEST['id'];
if (isset($_REQUEST['template_label'])) $templates->template_label
= $_REQUEST['template_label'];
if (isset($_REQUEST['template_comment'])) $templates->template_comment
= $_REQUEST['template_comment'];
if (isset($_REQUEST['template_style'])) $templates->template_style
= $_REQUEST['template_style'];
if (isset($_REQUEST['template_datasource'])) $templates->template_datasource
= $_REQUEST['template_datasource'];
if (isset($_REQUEST['template_target'])) {
$templates->template_target = $_REQUEST['template_target'];
if ($_REQUEST['template_target'] == "") {
$templates->template_attachment_type = "all";
} else {
$templates->template_attachment_type = $_REQUEST['template_attachment_type'];
}
}
if (isset($_REQUEST['template_type'])) {
$templates->template_type = $_REQUEST['template_type'];
if ($templates->template_type == 'HTML') {
if (isset($_REQUEST['template_content'])) {
$templates->template_content = $_REQUEST['template_content'];
}
} elseif ($templates->template_type == 'TXT') {
if (isset($_REQUEST['template_content_txt'])) $templates->template_content
= $_REQUEST['template_content_txt'];
}
}
$_SESSION['m_admin']['templatesEntitiesSelected'] = array();
for ($i=0;$i<count($_REQUEST['entities_chosen']); $i++) {
array_push(
$_SESSION['m_admin']['templatesEntitiesSelected'],
$_REQUEST['entities_chosen'][$i]
);
}
$control = array();
$control = $templatesControler->save($templates, $mode);
if (!empty($control['error']) && $control['error'] <> 1) {
// Error management depending of mode
$_SESSION['error'] = str_replace('#', '<br />', $control['error']);
At_putInSession('status', $status);
At_putInSession('templates', $templates->getArray());
switch ($mode) {
case 'up':
if (!empty($_REQUEST['id'])) {
header('location: ' . $_SESSION['config']['businessappurl']
. 'index.php?page=' . $pageName . '&mode=up&id='
. $_REQUEST['id'] . '&module=templates'
);
} else {
header('location: ' . $_SESSION['config']['businessappurl']
. 'index.php?page=' . $pageName . '&mode=list&module=templates&order='
. $status['order'] . '&order_field=' . $status['order_field']
. '&start=' . $status['start'] . '&what=' . $status['what']
);
}
exit;
case 'add':
header('location: ' . $_SESSION['config']['businessappurl']
. 'index.php?page=' . $pageName
. '&mode=add&module=templates'
);
exit;
}
} else {
if ($mode == 'add')
$_SESSION['info'] = _TEMPLATE_ADDED;
else
$_SESSION['info'] = _TEMPLATE_UPDATED;
unset($_SESSION['m_admin']);
header('location: ' . $_SESSION['config']['businessappurl']
. 'index.php?page=' . $pageName . '&mode=list&module=templates&order='
. $status['order'] . '&order_field=' . $status['order_field']
. '&start=' . $status['start'] . '&what=' . $status['what']
);
}
}
/**
* Initialize session parameters for update display
* @param Long $template_id
*/
function display_up($templateId)
{
init_session();
$state = true;
$templatesControler = new templates_controler();
$stylesArray = array();
if (is_dir('custom/' . $_SESSION['custom_override_id'] . '/modules/templates/templates/styles')) {
$dir = 'custom/' . $_SESSION['custom_override_id'] . '/modules/templates/templates/styles/';
} else {
$dir = 'modules/templates/templates/styles/';
}
$stylesArray = $templatesControler->getTemplatesStyles(
$dir,
$stylesArray
);
$xmlfile = 'modules/templates/xml/datasources.xml';
$xmlfileCustom = $_SESSION['config']['corepath']
. 'custom/' . $_SESSION['custom_override_id'] . '/' . $xmlfile;
if (file_exists($xmlfileCustom)) {
$xmlfile = $xmlfileCustom;
}
$datasourcesArray = array();
$datasourcesArray = $templatesControler->getTemplatesDatasources($xmlfile);
$targetsArray = array();
$targetsArray = $templatesControler->getTemplatesTargets();
$templates = $templatesControler->get($templateId);
/*echo '<pre>';
print_r($stylesArray);
echo '</pre>';*/
$entities = $templatesControler->getAllItemsLinkedToModel($templateId);
require_once 'modules/entities/class/EntityControler.php';
$entityControler = new EntityControler();
$entitiesOrg = $entityControler->getAllEntities();
/*echo '<pre>';
print_r($entities);
echo '</pre>';*/
if (empty($templates)) {
$state = false;
} else {
At_putInSession('templates', $templates->getArray());
At_putInSession('templatesStyles', $stylesArray);
At_putInSession('templatesTargets', $targetsArray);
At_putInSession('templatesDatasources', $datasourcesArray);
At_putInSession('templatesEntities', $entities);
At_putInSession('templatesEntitiesOrg', $entitiesOrg);
}
return $state;
}
/**
* Initialize session parameters for add display with given docserver
*/
function display_add()
{
$sessionName = 'templates';
if (!isset($_SESSION['m_admin'][$sessionName])) {
init_session();
}
$templatesControler = new templates_controler();
$stylesArray = array();
//echo 'custom/' . $_SESSION['custom_override_id'] . '/modules/templates/templates/styles';exit;
if (is_dir('custom/' . $_SESSION['custom_override_id'] . '/modules/templates/templates/styles')) {
$dir = 'custom/' . $_SESSION['custom_override_id'] . '/modules/templates/templates/styles/';
} else {
$dir = 'modules/templates/templates/styles/';
}
$stylesArray = $templatesControler->getTemplatesStyles(
$dir,
$stylesArray
);
$xmlfile = 'modules/templates/xml/datasources.xml';
$xmlfileCustom = $_SESSION['config']['corepath']
. 'custom/' . $_SESSION['custom_override_id'] . '/' . $xmlfile;
if (file_exists($xmlfileCustom)) {
$xmlfile = $xmlfileCustom;
}
$datasourcesArray = array();
$datasourcesArray = $templatesControler->getTemplatesDatasources($xmlfile);
$targetsArray = array();
$targetsArray = $templatesControler->getTemplatesTargets();
require_once 'modules/entities/class/EntityControler.php';
$entityControler = new EntityControler();
$entitiesOrg = $entityControler->getAllEntities();
At_putInSession('templatesStyles', $stylesArray);
At_putInSession('templatesTargets', $targetsArray);
At_putInSession('templatesDatasources', $datasourcesArray);
At_putInSession('templatesEntitiesOrg', $entitiesOrg);
}
/**
* Initialize session parameters for list display
*/
function display_list()
{
$pageName = 'templates_management_controler';
$idName = 'template_id';
$_SESSION['m_admin'] = array();
init_session();
$select[_TEMPLATES_TABLE_NAME] = array();
array_push(
$select[_TEMPLATES_TABLE_NAME],
$idName,
'template_label',
'template_comment',
'template_type'
);
$what = '';
$where ='';
$arrayPDO = array();
if (isset($_REQUEST['what']) && !empty($_REQUEST['what'])) {
$func = new functions();
$what = $_REQUEST['what'];
if ($_SESSION['config']['databasetype'] == 'POSTGRESQL') {
$where = "template_label ilike ? ";
} else {
$where = "template_label like ? ";
}
$arrayPDO = array_merge($arrayPDO, array(strtoupper($what)."%"));
}
// Checking order and order_field values
$order = 'asc';
if (isset($_REQUEST['order']) && !empty($_REQUEST['order'])) {
$order = trim($_REQUEST['order']);
}
$field = $idName;
if (isset($_REQUEST['order_field']) && !empty($_REQUEST['order_field'])) {
$field = trim($_REQUEST['order_field']);
}
$listShow = new list_show();
$orderstr = $listShow->define_order($order, $field);
$request = new request();
$tab = $request->PDOselect($select,$where,$arrayPDO,$orderstr,$_SESSION['config']['databasetype']);
for ($i=0;$i<count($tab);$i++) {
foreach($tab[$i] as &$item) {
switch ($item['column']) {
case $idName:
At_formatItem($item, _TEMPLATE_ID,'10','left','left','bottom',true); break;
case 'template_label':
At_formatItem($item, _TEMPLATE_LABEL,'30','left','left','bottom',true); break;
case 'template_comment':
At_formatItem($item, _TEMPLATE_COMMENT,'40','left','left','bottom',true); break;
case 'template_type':
At_formatItem($item, _TEMPLATE_TYPE,'10','left','left','bottom',true); break;
}
}
}
$result = array();
$result['tab']=$tab;
$result['what']=$what;
$result['page_name'] = $pageName.'&mode=list';
$result['page_name_up'] = $pageName.'&mode=up';
$result['page_name_del'] = $pageName.'&mode=del';
$result['page_name_add'] = $pageName.'&mode=add';
$result['label_add'] = _TEMPLATE_ADDITION;
$_SESSION['m_admin']['init'] = true;
$result['title'] = _TEMPLATES_LIST . ' : ' . count($tab) . ' ' . _TEMPLATES;
$result['autoCompletionArray'] = array();
$result['autoCompletionArray']['list_script_url']
= $_SESSION['config']['businessappurl'] . 'index.php?display=true'
. '&module=templates&page=templates_list_by_label';
$result['autoCompletionArray']['number_to_begin'] = 1;
return $result;
}
/**
* Delete given docserver if exists and initialize session parameters
* @param string $template_id
*/
function display_del($template_id)
{
$templatesControler = new templates_controler();
$templates = $templatesControler->get($template_id);
if (isset($templates)) {
// Deletion
$control = array();
$control = $templatesControler->delete($templates);
if (!empty($control['error']) && $control['error'] <> 1) {
$_SESSION['error'] = str_replace('#', '<br />', $control['error']);
} else {
$_SESSION['info'] = _TEMPLATE_DELETED . ' ' . $template_id;
}
$pageName = 'templates_management_controler';
?>
<script type='text/javascript'>window.top.location='<?php
echo $_SESSION['config']['businessappurl'] . 'index.php?page='
. $pageName . '&mode=list&module=templates';?>';</script>
<?php
exit;
} else {
// Error management
$_SESSION['error'] = _TEMPLATE . ' ' . _UNKNOWN;
}
}
......@@ -32,21 +32,6 @@
<parameter name="module" value="templates"/>
<parameter name="display" value="true"/>
</requestDefinition>
<requestDefinition method="POST" path="/apps/maarch_entreprise/index.php" validationRule="admin_change_templates" >
<parameter name="page" value="change_template_style"/>
<parameter name="module" value="templates"/>
<parameter name="display" value="false"/>
</requestDefinition>
<requestDefinition method="POST" path="/apps/maarch_entreprise/index.php" validationRule="template_list" >
<parameter name="page" value="templates_list_by_label"/>
<parameter name="module" value="templates"/>
<parameter name="display" value="false"/>
</requestDefinition>
<requestDefinition method="POST" path="/apps/maarch_entreprise/index.php" validationRule="generate_attachment_html" >
<parameter name="page" value="generate_attachment_html"/>
<parameter name="module" value="templates"/>
<parameter name="display" value="false"/>
</requestDefinition>
<requestDefinition method="POST" path="/apps/maarch_entreprise/index.php" validationRule="param_templates_doctypes" >
<parameter name="page" value="param_templates_doctypes"/>
<parameter name="module" value="templates"/>
......
......@@ -49,14 +49,7 @@
<parameter name="template_id" type="document_id" />
<parameter name="module" type="identifier" />
</validationRule>
<validationRule name="generate_attachment_html" extends="standardForm" mode="error">
<parameter name="coll_id" type="collection_list" />
<parameter name="res_id" type="identifier" />
<parameter name="module" type="identifier" />
</validationRule>
<validationRule name="param_templates_doctypes" extends="standardForm" mode="error">
<validationRule name="param_templates_doctypes" extends="standardForm" mode="error">
<parameter name="templates" type="identifier" />
<parameter name="e_file" type="YN" />
<parameter name="module" type="identifier" />
......
This diff is collapsed.
sql/151.sql 100755 → 100644
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment