Use a variable for an absolute path for performance reason

NOALYSS_INCLUDE
NOALYSS_HOME
NOALYSS_PLUGIN
New logo and cosmetic
This commit is contained in:
Dany De Bontridder 2015-08-12 12:43:10 +02:00
parent 8c3875c119
commit 1ddde7c2ab
21 changed files with 112 additions and 112 deletions

View file

@ -14,7 +14,7 @@
color:darkblue;
margin-left : 50px;
margin-right: 50px;
background-color: #e1edf7;
background-color: #F8F8FF;
}
h1 {
font-size: 120%;
@ -59,7 +59,7 @@
border-style: solid;
border-width: 0px;
font-color:blue;
margin:1px 2px 1px 2px;
margin:2px 2px 1px 2px;
}
.warning,.error {
color:red;
@ -68,7 +68,7 @@
</head>
<body>
<p align="center">
<IMG SRC="../image/logo6720.png" alt="NOALYSS">
<IMG SRC="../image/logo6820.png" style="width: 415px;height: 200px" alt="NOALYSS">
</p>
<?php
@ -103,6 +103,7 @@
<script type="text/javascript" charset="utf-8" language="javascript" src="setup.js"></script>
<?php
require_once '../../include/constant.php';
$failed="<span style=\"font-size:18px;color:red\">&#x2716;</span>";
$succeed="<span style=\"font-size:18px;color:green\">&#x2713;</span>";
@ -211,9 +212,9 @@ if ( ! file_exists('..'.DIRECTORY_SEPARATOR.'..'.DIRECTORY_SEPARATOR.'include'.D
// magic_quotes_runtime = Off
// magic_quotes_sybase = Off
// include_path
require_once '../../include/constant.php';
require_once('config_file.php');
require_once('class_database.php');
require_once NOALYSS_INCLUDE.'/config_file.php';
require_once NOALYSS_INCLUDE.'/class_database.php';
if ( defined ("MULTI") && MULTI==1) { create_htaccess();}
echo '<h1 class="title">Configuration</h1>';

View file

@ -18,7 +18,7 @@ require_once NOALYSS_INCLUDE.'/class_user.php';
require_once NOALYSS_INCLUDE.'/class_extension.php';
if ( !isset ($_REQUEST['gDossier'])) exit();
require_once 'class_own.php';
require_once NOALYSS_INCLUDE.'/class_own.php';
mb_internal_encoding("UTF-8");
global $g_user,$cn,$g_parameter;
@ -59,7 +59,7 @@ if (isset($_REQUEST['plugin_code']) )
exit();
}
/* call the ajax script */
require_once('ext'.DIRECTORY_SEPARATOR.dirname(trim($ext->getp('me_file'))).DIRECTORY_SEPARATOR.'ajax.php');
require_once(NOALYSS_PLUGIN.DIRECTORY_SEPARATOR.dirname(trim($ext->getp('me_file'))).DIRECTORY_SEPARATOR.'ajax.php');
}
else
{

View file

@ -356,7 +356,7 @@ case 'sc':
*
*----------------------------------------------------------------------*/
case 'fs':
require_once('class_acc_ledger.php');
require_once NOALYSS_INCLUDE.'/class_acc_ledger.php';
$r=HtmlInput::title_box(_("Détail fiche"), 'search_card');
$r.='<form method="GET" onsubmit="this.ctl=\'ipop_card\';search_get_card(this);return false;">';
$q=new IText('query');
@ -427,14 +427,14 @@ case 'fs':
}//foreach
ob_start();
require_once('template/card_result.php');
require_once NOALYSS_INCLUDE.'/template/card_result.php';
$r.=ob_get_contents();
ob_end_clean();
$ctl=$ctl.'_content';
$html=$r;
break;
case 'action_add_concerned_card':
require_once 'ajax_add_concerned_card.php';
require_once NOALYSS_INCLUDE.'/ajax_add_concerned_card.php';
return;
break;
case 'action_save_concerned':

View file

@ -123,7 +123,7 @@ if ( isset($_GET['f_id']))
}
ob_start();
require_once('template/history_top.php');
require_once NOALYSS_INCLUDE.'/template/history_top.php';
$detail_card=HtmlInput::card_detail($fiche->strAttribut(ATTR_DEF_QUICKCODE),$fiche->getName());
echo h2( $fiche->getName().'['.$fiche->strAttribut(ATTR_DEF_QUICKCODE).']',' class="title" ');
echo '<p style="text-align:center;">'.$detail_card.'</p>';
@ -195,7 +195,7 @@ if ( isset($_REQUEST['pcm_val']))
}
ob_start();
require_once('template/history_top.php');
require_once NOALYSS_INCLUDE.'/template/history_top.php';
if ( $poste->HtmlTable($array) == -1)
{

View file

@ -90,7 +90,7 @@ $g_user->check();
if ( $g_user->check_dossier(dossier::id(),true)=='X' )
{
ob_start();
require_once ('template/ledger_detail_forbidden.php');
require_once NOALYSS_INCLUDE.'/template/ledger_detail_forbidden.php';
echo HtmlInput::button_close($div);
$html=ob_get_contents();
ob_end_clean();
@ -117,7 +117,7 @@ if ($ledger=="")
ob_start();
echo HtmlInput::title_box(_("Information"), $div);
require_once ('template/ledger_detail_forbidden.php');
require_once NOALYSS_INCLUDE.'/template/ledger_detail_forbidden.php';
echo HtmlInput::button_close($div);
$html=ob_get_contents();
ob_end_clean();
@ -139,7 +139,7 @@ if ( $access == 'X' )
{
ob_start();
echo HtmlInput::title_box(_("Information"), $div);
require_once ('template/ledger_detail_forbidden.php');
require_once NOALYSS_INCLUDE.'/template/ledger_detail_forbidden.php';
echo HtmlInput::button_close($div);
$html=ob_get_contents();
ob_end_clean();
@ -202,19 +202,19 @@ case 'de':
if ( $obj==null || $obj->signature == 'ODS' )
{
/* only the details */
require_once('template/ledger_detail_misc.php');
require_once NOALYSS_INCLUDE.'/template/ledger_detail_misc.php';
}
elseif ( $obj->signature=='ACH')
{
require_once('template/ledger_detail_ach.php');
require_once NOALYSS_INCLUDE.'/template/ledger_detail_ach.php';
}
elseif ($obj->signature=='FIN')
{
require_once('template/ledger_detail_fin.php');
require_once NOALYSS_INCLUDE.'/template/ledger_detail_fin.php';
}
elseif ( $obj->signature=='VEN')
{
require_once('template/ledger_detail_ven.php');
require_once NOALYSS_INCLUDE.'/template/ledger_detail_ven.php';
}
}
catch (Exception $e)

View file

@ -112,7 +112,7 @@ switch ($op)
case "rm_stock":
if ($g_user->check_module('STOCK') == 0)
exit();
require_once('constant.security.php');
require_once NOALYSS_INCLUDE.'/constant.security.php';
$cn->exec_sql('delete from stock_goods where sg_id=$1', array($s_id));
$html = escape_xml($s_id);
header('Content-type: text/xml; charset=UTF-8');
@ -122,7 +122,7 @@ switch ($op)
//--------------------------------------------------
// get the last date of a ledger
case 'lastdate':
require_once('class_acc_ledger_fin.php');
require_once NOALYSS_INCLUDE.'/class_acc_ledger_fin.php';
$ledger = new Acc_Ledger_Fin($cn, $_GET['p_jrn']);
$html = $ledger->get_last_date();
$html = escape_xml($html);
@ -137,7 +137,7 @@ EOF;
break;
case 'bkname':
require_once('class_acc_ledger_fin.php');
require_once NOALYSS_INCLUDE.'/class_acc_ledger_fin.php';
$ledger = new Acc_Ledger_Fin($cn, $_GET['p_jrn']);
$html = $ledger->get_bank_name();
$html = escape_xml($html);
@ -152,7 +152,7 @@ EOF;
break;
// display new calendar
case 'cal':
require_once('class_calendar.php');
require_once NOALYSS_INCLUDE.'/class_calendar.php';
/* others report */
$cal = new Calendar();
$cal->set_periode($per);
@ -170,7 +170,7 @@ EOF;
break;
/* rem a cat of document */
case 'rem_cat_doc':
require_once('class_document_type.php');
require_once NOALYSS_INCLUDE.'/class_document_type.php';
// if user can not return error message
if ($g_user->check_action(PARCATDOC) == 0)
{
@ -212,7 +212,7 @@ EOF;
return;
break;
case 'mod_cat_doc':
require_once 'template/document_mod_change.php';
require_once NOALYSS_INCLUDE.'/template/document_mod_change.php';
break;
case 'dsp_tva':
$cn = new Database($gDossier);
@ -303,7 +303,7 @@ EOF;
* display the lettering
*/
case 'dl':
require_once('class_lettering.php');
require_once NOALYSS_INCLUDE.'/class_lettering.php';
$exercice = $g_user->get_exercice();
if ($g_user->check_module("LETCARD") == 0 && $g_user->check_module("LETACC") == 0)
exit();
@ -510,37 +510,37 @@ EOF;
EOF;
break;
case 'mod_doc':
require_once('ajax_mod_document.php');
require_once NOALYSS_INCLUDE.'/ajax_mod_document.php';
break;
case 'input_per':
require_once('ajax_mod_periode.php');
require_once NOALYSS_INCLUDE.'/ajax_mod_periode.php';
break;
case 'save_per':
require_once('ajax_mod_periode.php');
require_once NOALYSS_INCLUDE.'/ajax_mod_periode.php';
break;
case 'mod_predf':
require_once('ajax_mod_predf_op.php');
require_once NOALYSS_INCLUDE.'/ajax_mod_predf_op.php';
break;
case 'save_predf':
require_once('ajax_save_predf_op.php');
require_once NOALYSS_INCLUDE.'/ajax_save_predf_op.php';
break;
case 'search_op':
require_once 'search.inc.php';
require_once NOALYSS_INCLUDE.'/search.inc.php';
break;
case 'search_action':
require_once 'ajax_search_action.php';
require_once NOALYSS_INCLUDE.'/ajax_search_action.php';
break;
case 'display_profile':
require_once("ajax_get_profile.php");
require_once NOALYSS_INCLUDE.'/ajax_get_profile.php';
break;
case 'det_menu':
require_once("ajax_get_menu_detail.php");
require_once NOALYSS_INCLUDE.'/ajax_get_menu_detail.php';
break;
case 'add_menu':
require_once 'ajax_add_menu.php';
require_once NOALYSS_INCLUDE.'/ajax_add_menu.php';
break;
case 'cardsearch':
require_once 'ajax_boxcard_search.php';
require_once NOALYSS_INCLUDE.'/ajax_boxcard_search.php';
break;
case 'add_plugin':
$me_code = new IText('me_code');
@ -549,7 +549,7 @@ EOF;
$me_description = new IText("me_description");
$me_parameter = new IText("me_parameter");
$new = true;
require_once 'ajax_plugin_detail.php';
require_once NOALYSS_INCLUDE.'/ajax_plugin_detail.php';
break;
case 'mod_plugin':
$m = $cn->get_array("select me_code,me_file,me_menu,me_description,me_parameter
@ -566,92 +566,92 @@ EOF;
$me_description = new IText("me_description", $m[0] ['me_description']);
$me_parameter = new IText("me_parameter", $m[0] ['me_parameter']);
$new = false;
require_once 'ajax_plugin_detail.php';
require_once NOALYSS_INCLUDE.'/ajax_plugin_detail.php';
break;
case 'saldo':
require_once 'ajax_bank_saldo.php';
require_once NOALYSS_INCLUDE.'/ajax_bank_saldo.php';
break;
case 'up_predef':
require_once 'ajax_update_predef.php';
require_once NOALYSS_INCLUDE.'/ajax_update_predef.php';
break;
case 'upd_receipt':
require_once 'ajax_get_receipt.php';
require_once NOALYSS_INCLUDE.'/ajax_get_receipt.php';
break;
case 'up_pay_method':
require_once 'ajax_update_payment.php';
require_once NOALYSS_INCLUDE.'/ajax_update_payment.php';
break;
case 'openancsearch':
case 'resultancsearch':
require_once('ajax_anc_search.php');
require_once NOALYSS_INCLUDE.'/ajax_anc_search.php';
break;
case 'autoanc':
require_once 'ajax_auto_anc_card.php';
require_once NOALYSS_INCLUDE.'/ajax_auto_anc_card.php';
break;
case 'create_menu';
require_once 'ajax_create_menu.php';
require_once NOALYSS_INCLUDE.'/ajax_create_menu.php';
break;
case 'modify_menu';
require_once 'ajax_mod_menu.php';
require_once NOALYSS_INCLUDE.'/ajax_mod_menu.php';
break;
case 'mod_stock_repo':
require_once 'ajax_mod_stock_repo.php';
require_once NOALYSS_INCLUDE.'/ajax_mod_stock_repo.php';
break;
case 'view_mod_stock':
require_once 'ajax_view_mod_stock.php';
require_once NOALYSS_INCLUDE.'/ajax_view_mod_stock.php';
break;
case 'fddetail':
require_once 'ajax_fiche_def_detail.php';
require_once NOALYSS_INCLUDE.'/ajax_fiche_def_detail.php';
break;
case 'vw_action':
require_once 'ajax_view_action.php';
require_once NOALYSS_INCLUDE.'/ajax_view_action.php';
break;
case 'minrow':
require_once 'ajax_min_row.php';
require_once NOALYSS_INCLUDE.'/ajax_min_row.php';
break;
case 'navigator':
require_once 'ajax_navigator.php';
require_once NOALYSS_INCLUDE.'/ajax_navigator.php';
break;
case 'preference':
require_once 'ajax_preference.php';
require_once NOALYSS_INCLUDE.'/ajax_preference.php';
break;
case 'bookmark':
require_once 'ajax_bookmark.php';
require_once NOALYSS_INCLUDE.'/ajax_bookmark.php';
break;
case 'tag_detail':
require_once 'ajax_tag_detail.php';
require_once NOALYSS_INCLUDE.'/ajax_tag_detail.php';
break;
case 'tag_save':
require_once 'ajax_tag_save.php';
require_once NOALYSS_INCLUDE.'/ajax_tag_save.php';
break;
case 'tag_list':
require_once 'ajax_tag_list.php';
require_once NOALYSS_INCLUDE.'/ajax_tag_list.php';
break;
case 'tag_add':
require_once 'ajax_tag_add_action.php';
require_once NOALYSS_INCLUDE.'/ajax_tag_add_action.php';
break;
case 'tag_remove':
require_once 'ajax_tag_remove_action.php';
require_once NOALYSS_INCLUDE.'/ajax_tag_remove_action.php';
break;
case 'tag_choose':
require_once 'ajax_tag_choose.php';
require_once NOALYSS_INCLUDE.'/ajax_tag_choose.php';
break;
case 'tag_choose':
require_once 'ajax_tag_choose.php';
require_once NOALYSS_INCLUDE.'/ajax_tag_choose.php';
break;
case 'search_display_tag':
require_once 'ajax_search_display_tag.php';
require_once NOALYSS_INCLUDE.'/ajax_search_display_tag.php';
break;
case 'search_add_tag':
require_once 'ajax_search_add_tag.php';
require_once NOALYSS_INCLUDE.'/ajax_search_add_tag.php';
break;
case 'search_clear_tag':
require_once 'ajax_search_clear_tag.php';
require_once NOALYSS_INCLUDE.'/ajax_search_clear_tag.php';
break;
case 'calendar_zoom':
require_once 'ajax_calendar_zoom.php';
require_once NOALYSS_INCLUDE.'/ajax_calendar_zoom.php';
break;
case 'ledger_show':
require_once 'ajax_ledger_show.php';
require_once NOALYSS_INCLUDE.'/ajax_ledger_show.php';
case 'ledger_description':
$ajrn=$cn->get_array('select jrn_def_name,jrn_def_description from jrn_def where jrn_def_id=$1',array($l));
if ( count($ajrn)==1)
@ -670,55 +670,55 @@ EOF;
/*
* Show the available distribution keys for analytic
*/
require_once 'ajax_anc_key_choice.php';
require_once NOALYSS_INCLUDE.'/ajax_anc_key_choice.php';
break;
case 'anc_key_compute':
/*
* Show the activities computed with the selected distribution key
*/
require_once 'ajax_anc_key_compute.php';
require_once NOALYSS_INCLUDE.'/ajax_anc_key_compute.php';
break;
case 'account_update':
/**
* update an accounting (from CFGPCMN)
*/
require_once 'ajax_account_update.php';
require_once NOALYSS_INCLUDE.'/ajax_account_update.php';
break;
// From admin, revoke the access to a folder from an
// user
case 'folder_remove':
require_once 'ajax_admin.php';
require_once NOALYSS_INCLUDE.'/ajax_admin.php';
break;
// From admin, display a list of folder to which the user has
// no access
case 'folder_display':
require_once 'ajax_admin.php';
require_once NOALYSS_INCLUDE.'/ajax_admin.php';
break;
// From admin, grant the access to a folder to an
// user
case 'folder_add':
require_once 'ajax_admin.php';
require_once NOALYSS_INCLUDE.'/ajax_admin.php';
break;
// From admin, display info and propose to drop the folder
case 'folder_drop':
require_once 'ajax_admin.php';
require_once NOALYSS_INCLUDE.'/ajax_admin.php';
break;
// From admin, display the information of a folder you can
// modify
case 'folder_modify':
require_once 'ajax_admin.php';
require_once NOALYSS_INCLUDE.'/ajax_admin.php';
break;
// From admin, display info and propose to drop the template
case 'modele_drop':
require_once 'ajax_admin.php';
require_once NOALYSS_INCLUDE.'/ajax_admin.php';
break;
// From admin, display the information of a template you can
// modify
case 'modele_modify':
require_once 'ajax_admin.php';
require_once NOALYSS_INCLUDE.'/ajax_admin.php';
break;
default:

View file

@ -60,7 +60,7 @@ set_language();
if ( $cont != 0 ) exit();
$cn=new Database(dossier::id());
include_once ("class_user.php");
require_once NOALYSS_INCLUDE.'/class_user.php';
global $g_user;
$g_user=new User($cn);
$g_user->Check();
@ -105,7 +105,7 @@ case "sf":
$r.='<form id="sp" method="get" onsubmit="'.$attr.'search_get_poste(this);return false;">';
ob_start();
require_once('template/account_search.php');
require_once NOALYSS_INCLUDE.'/template/account_search.php';
$r.=ob_get_contents();
ob_end_clean();
$r.=dossier::hidden();
@ -181,7 +181,7 @@ case "sf":
}
ob_start();
require_once('template/account_result.php');
require_once NOALYSS_INCLUDE.'/template/account_result.php';
$r.=ob_get_contents();
ob_end_clean();

Binary file not shown.

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 171 KiB

Before After
Before After

View file

@ -227,7 +227,7 @@ version 6.8.1.5 - '.$my_domain.'
<BR>
<center>
<IMG SRC="image/logo6820.png" alt="NOALYSS">
<IMG SRC="image/logo6820.png" style="width:420px;height:200px" alt="NOALYSS">
<BR>
<BR>
<BR>

View file

@ -24,8 +24,8 @@
*/
require_once NOALYSS_INCLUDE.'/class_itext.php';
require_once NOALYSS_INCLUDE.'/../../include/class_iselect.php';
require_once NOALYSS_INCLUDE.'/../../include/class_icheckbox.php';
require_once NOALYSS_INCLUDE.'/class_iselect.php';
require_once NOALYSS_INCLUDE.'/class_icheckbox.php';
function is_unix()
{

View file

@ -65,7 +65,6 @@ ini_set ('default_charset',"UTF-8");
*/
global $g_captcha,$g_failed,$g_succeed;
$g_captcha=false;
$g_failed="<span style=\"font-size:18px;color:red\">&#x2716;</span>";

View file

@ -21,7 +21,7 @@
/**\file
* \brief this file respond to an ajax request to modify a type of document
*/
require_once 'class_document_type.php';
require_once NOALYSS_INCLUDE.'/class_document_type.php';
echo HtmlInput::title_box(_('Type de document'),'change_doc_div');
$doc_type=new Document_type($cn,$dt_id);

View file

@ -2,10 +2,10 @@
//This file is part of NOALYSS and is under GPL
//see licence.txt
$str_anc="";
?><?php require_once('template/ledger_detail_top.php'); ?>
?><?php require_once NOALYSS_INCLUDE.'/template/ledger_detail_top.php'; ?>
<div class="content" style="padding:0;">
<?php
require_once('class_own.php');
require_once NOALYSS_INCLUDE.'/class_own.php';
$owner = new Own($cn);
?>
@ -250,6 +250,6 @@ $str_anc="";
<?php
require_once('ledger_detail_bottom.php');
require_once NOALYSS_INCLUDE.'/template/ledger_detail_bottom.php';
?>
</div>

View file

@ -230,7 +230,7 @@ echo '</div>';
<?php
require_once('template/ledger_detail_file.php');
require_once NOALYSS_INCLUDE.'/template/ledger_detail_file.php';
?>

View file

@ -2,13 +2,13 @@
//This file is part of NOALYSS and is under GPL
//see licence.txt
$str_anc="";
?><?php require_once('template/ledger_detail_top.php'); ?>
?><?php require_once NOALYSS_INCLUDE.'/template/ledger_detail_top.php'; ?>
<div class="content" style="padding:0;">
<?php
require_once('class_own.php');
require_once NOALYSS_INCLUDE.'/class_own.php';
$owner=new Own($cn);
require_once ('class_anc_plan.php');
require_once('class_anc_operation.php');
require_once NOALYSS_INCLUDE.'/class_anc_plan.php';
require_once NOALYSS_INCLUDE.'/class_anc_operation.php';
?>
<?php if ( $access=='W') : ?>
@ -141,6 +141,6 @@ echo td(_('Pièce')).td($itext->input());
?>
</div>
<?php
require_once 'ledger_detail_bottom.php';
require_once NOALYSS_INCLUDE.'/template/ledger_detail_bottom.php';
?>
</div>

View file

@ -2,14 +2,14 @@
//This file is part of NOALYSS and is under GPL
//see licence.txt
?><?php
require_once('template/ledger_detail_top.php');
require_once('class_anc_operation.php');
require_once('class_anc_plan.php');
require_once NOALYSS_INCLUDE.'/template/ledger_detail_top.php';
require_once NOALYSS_INCLUDE.'/class_anc_operation.php';
require_once NOALYSS_INCLUDE.'/class_anc_plan.php';
$str_anc="";
?>
<?php
require_once('class_own.php');
require_once ('class_anc_plan.php');
require_once NOALYSS_INCLUDE.'/class_own.php';
require_once NOALYSS_INCLUDE.'/class_anc_plan.php';
?>
<div class="content" style="padding:0">
@ -86,7 +86,7 @@ require_once ('class_anc_plan.php');
<div class="myfieldset">
<?php
require_once('class_own.php');
require_once NOALYSS_INCLUDE.'/class_own.php';
$owner=new Own($cn);
?>
<table class="result">
@ -187,6 +187,6 @@ $amount_idx=0;
</table>
</div>
<?php
require_once('ledger_detail_bottom.php');
require_once NOALYSS_INCLUDE.'/template/ledger_detail_bottom.php';
?>
</div>

View file

@ -20,5 +20,5 @@
</div>
<?php echo _("Opération ID")."=".hb($obj->det->jr_internal); ?>
<div id="<?php echo $div.'info'?>" class="divinfo"></div>
<?php require_once('class_itextarea.php');
<?php require_once NOALYSS_INCLUDE.'/class_itextarea.php';
?>

View file

@ -1,7 +1,7 @@
<?php
//This file is part of NOALYSS and is under GPL
//see licence.txt
?><?php require_once('ledger_detail_top.php'); ?>
?><?php require_once NOALYSS_INCLUDE.'/template/ledger_detail_top.php'; ?>
<?php
$tab_account=$div."account";
$tab_rapprochement=$div."rapproch";
@ -11,7 +11,7 @@
?>
<div class="content" style="padding:0;">
<?php
require_once('class_own.php');
require_once NOALYSS_INCLUDE.'/class_own.php';
$owner = new Own($cn);
?>
@ -252,5 +252,5 @@ echo $ipaid->input();
</div>
<?php
require_once('ledger_detail_bottom.php');
require_once NOALYSS_INCLUDE.'/template/ledger_detail_bottom.php';
?>

View file

@ -2,8 +2,8 @@
//This file is part of NOALYSS and is under GPL
//see licence.txt
?><?php
require_once ('class_acc_operation.php');
require_once ('class_acc_reconciliation.php');
require_once NOALYSS_INCLUDE.'/class_acc_operation.php';
require_once NOALYSS_INCLUDE.'/class_acc_reconciliation.php';
$amount_deb=0;$amount_cred=0;
$gDossier=dossier::id();
global $g_failed;

View file

@ -2,8 +2,8 @@
//This file is part of NOALYSS and is under GPL
//see licence.txt
?><?php
require_once ('class_acc_operation.php');
require_once ('class_acc_reconciliation.php');
require_once NOALYSS_INCLUDE.'/class_acc_operation.php';
require_once NOALYSS_INCLUDE.'/class_acc_reconciliation.php';
$gDossier=dossier::id();
if ( count($this->content) == 0 ) :

View file

@ -2,8 +2,8 @@
//This file is part of NOALYSS and is under GPL
//see licence.txt
?><?php
require_once 'class_html_input.php';
require_once 'class_itext.php';
require_once NOALYSS_INCLUDE.'/class_html_input.php';
require_once NOALYSS_INCLUDE.'/class_itext.php';
echo HtmlInput::title_box($msg,"divmenu");
$str_code=new IText('me_code',$m->me_code);
if ( $m->me_code != -1) $str_code->setReadOnly (true);