Skip to content
Snippets Groups Projects
Commit b91537bf authored by SNA's avatar SNA
Browse files

Evol

parent 8ac6d705
No related branches found
No related tags found
No related merge requests found
......@@ -20,7 +20,7 @@ class notes
*/
public function build_modules_tables()
{
$xmlconfig = simplexml_load_file($_SESSION['pathtomodules']."notes/xml/config.xml");
$xmlconfig = simplexml_load_file("modules/notes/xml/config.xml");
foreach($xmlconfig->TABLENAME as $TABLENAME)
{
$_SESSION['tablename']['not_notes'] = (string) $TABLENAME->not_notes;
......@@ -36,4 +36,4 @@ class notes
}
}
?>
\ No newline at end of file
?>
......@@ -9,15 +9,15 @@
* @license GPL
* @author Claire Figueras <dev@maarch.org>
*/
session_name('PeopleBox');
session_start();
require_once($_SESSION['pathtocoreclass']."class_functions.php");
require_once($_SESSION['pathtocoreclass']."class_core_tools.php");
include('core/init.php');
require_once("core/class/class_functions.php");
require_once("core/class/class_core_tools.php");
$core_tools = new core_tools();
//here we loading the lang vars
$core_tools->load_lang();
$core_tools->test_service('manage_notes_doc', 'notes');
require_once($_SESSION['pathtocoreclass']."class_db.php");
require_once("core/class/class_db.php");
$func = new functions();
//$db = new dbquery();
//$db->connect();
......@@ -27,7 +27,7 @@ if(empty($_SESSION['collection_id_choice']))
}
//$db->query("select i.id, i.note_text, i.date, i.user_id, u.lastname, u.firstname from ".$_SESSION['tablename']['not_notes']." i
//inner join ".$_SESSION['tablename']['users']." u on i.user_id = u.user_id WHERE identifier = ".$_SESSION['doc_id']." and i.coll_id = '".$_SESSION['collection_id_choice']."' ORDER BY date desc");
require_once($_SESSION['pathtocoreclass']."class_request.php");
require_once("core/class/class_request.php");
require_once($_SESSION['config']['businessapppath']."class".DIRECTORY_SEPARATOR."class_list_show.php");
$func = new functions();
$select[$_SESSION['tablename']['users']] = array();
......
......@@ -25,7 +25,10 @@ define('_ADDITION_NOTE', 'Add a note');
define('_NOTES_DELETED', 'Note deleted');
define('_NOTES_MODIFIED', 'Note modified');
define('_NOTE_UPDATED', 'Note modified');
define('_NOTES', 'Notes');
if(!defined('_NOTES'))
{
define('_NOTES', 'Notes');
}
define('_NOTES_COMMENT', 'Notes');
define('_OF', 'of');
......
......@@ -25,7 +25,10 @@ define('_ADDITION_NOTE', 'Ajout d&rsquo;une note');
define('_NOTES_DELETED', 'Note supprim&eacute;e');
define('_NOTES_MODIFIED', 'Note modifi&eacute;e');
define('_NOTE_UPDATED', 'Note modifi&eacute;e');
define('_NOTES', 'Notes');
if(!defined('_NOTES'))
{
define('_NOTES', 'Notes');
}
define('_NOTES_COMMENT', 'Notes');
define('_OF', 'de');
?>
......@@ -10,13 +10,13 @@
* @license GPL
* @author Claire Figueras <dev@maarch.org>
*/
session_name('PeopleBox');
session_start();
include('core/init.php');
require_once($_SESSION['pathtocoreclass']."class_functions.php");
require_once($_SESSION['pathtocoreclass']."class_db.php");
require_once($_SESSION['pathtocoreclass']."class_core_tools.php");
require_once($_SESSION['pathtocoreclass']."class_security.php");
require_once("core/class/class_functions.php");
require_once("core/class/class_db.php");
require_once("core/class/class_core_tools.php");
require_once("core/class/class_security.php");
$core_tools = new core_tools();
$sec = new security();
......@@ -66,7 +66,7 @@ if (isset($_REQUEST['notes'])&& !empty($_REQUEST['notes']))
if($_SESSION['history']['noteadd'])
{
require_once($_SESSION['pathtocoreclass']."class_history.php");
require_once("core/class/class_history.php");
$hist = new history();
$hist->add($view, $identifier ,"ADD", _ADDITION_NOTE._ON_DOC_NUM.$identifier, $_SESSION['config']['databasetype'], 'notes');
......
......@@ -10,17 +10,17 @@
* @license GPL
* @author Claire Figueras <dev@maarch.org>
*/
session_name('PeopleBox');
session_start();
include('core/init.php');
require_once($_SESSION['pathtocoreclass']."class_functions.php");
require($_SESSION['pathtocoreclass']."class_core_tools.php");
require_once("core/class/class_functions.php");
require("core/class/class_core_tools.php");
$core_tools = new core_tools();
//here we loading the lang vars
$core_tools->load_lang();
require_once($_SESSION['pathtocoreclass']."class_db.php");
require_once("core/class/class_db.php");
$func = new functions();
$db = new dbquery();
......@@ -55,7 +55,7 @@ if(isset($_REQUEST['modify']) )
if($_SESSION['history']['noteup'])
{
require_once($_SESSION['pathtocoreclass']."class_history.php");
require_once("core/class/class_history.php");
$hist = new history();
$hist->add($_SESSION['tablename']['not_notes'], $id ,"UP", _NOTE_UPDATED, $_SESSION['config']['databasetype'], 'notes');
}
......@@ -75,7 +75,7 @@ if(isset($_REQUEST['delete']) )
if($_SESSION['history']['notedel'])
{
require_once($_SESSION['pathtocoreclass']."class_history.php");
require_once("core/class/class_history.php");
$hist = new history();
$hist->add($_SESSION['tablename']['not_notes'], $id ,"DEL", _NOTES_DELETED, $_SESSION['config']['databasetype'], 'notes');
}
......
......@@ -9,10 +9,10 @@
* @license GPL
* @author Claire Figueras <dev@maarch.org>
*/
session_name('PeopleBox');
session_start();
require_once($_SESSION['pathtocoreclass']."class_functions.php");
require_once($_SESSION['pathtocoreclass']."class_core_tools.php");
include('core/init.php');
require_once("core/class/class_functions.php");
require_once("core/class/class_core_tools.php");
$core_tools = new core_tools();
//here we loading the lang vars
$core_tools->load_lang();
......
......@@ -9,17 +9,17 @@
* @license GPL
* @author Loïc Vinet <dev@maarch.org>
*/
session_name('PeopleBox');
session_start();
require_once($_SESSION['pathtocoreclass']."class_functions.php");
require_once($_SESSION['pathtocoreclass']."class_core_tools.php");
include('core/init.php');
require_once("core/class/class_functions.php");
require_once("core/class/class_core_tools.php");
$core_tools = new core_tools();
//here we loading the lang vars
$core_tools->load_lang();
$core_tools->test_service('show_notes_list', 'notes');
require_once($_SESSION['pathtocoreclass']."class_db.php");
require_once("core/class/class_db.php");
$func = new functions();
if(empty($_SESSION['collection_id_choice']))
......@@ -27,7 +27,7 @@ if(empty($_SESSION['collection_id_choice']))
$_SESSION['collection_id_choice']= $_SESSION['user']['collections'][0];
}
require_once($_SESSION['pathtocoreclass']."class_request.php");
require_once("core/class/class_request.php");
require_once($_SESSION['config']['businessapppath']."class".DIRECTORY_SEPARATOR."class_list_show.php");
/*
......
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