Revision: 6511
http://care2002.svn.sourceforge.net/care2002/?rev=6511&view=rev
Author: mizuko
Date: 2010-06-30 16:00:39 +0000 (Wed, 30 Jun 2010)
Log Message:
-----------
see #54
Added Paths:
-----------
care2x/branches/gettext/modules/tech/tech.php
Removed Paths:
-------------
care2x/branches/gettext/modules/tech/technik.php
Copied: care2x/branches/gettext/modules/tech/tech.php (from rev 6509,
care2x/branches/gettext/modules/tech/technik.php)
===================================================================
--- care2x/branches/gettext/modules/tech/tech.php
(rev 0)
+++ care2x/branches/gettext/modules/tech/tech.php 2010-06-30 16:00:39 UTC
(rev 6511)
@@ -0,0 +1,153 @@
+<?php
+error_reporting(E_COMPILE_ERROR|E_ERROR|E_CORE_ERROR);
+require('./roots.php');
+require($root_path.'/include/helpers/inc_environment_global.php');
+/**
+* CARE2X Integrated Hospital Information System Deployment 2.1 - 2004-10-02
+* GNU General Public License
+* Copyright 2002,2003,2004,2005 Elpidio Latorilla
+* [email protected],
+*
+* See the file "copy_notice.txt" for the licence notice
+*/
+define('LANG_FILE','tech.php');
+define('NO_2LEVEL_CHK',1);
+require_once($root_path.'include/helpers/inc_front_chain_lang.php');
+// reset all 2nd level lock cookies
+require($root_path.'include/helpers/inc_2level_reset.php');
+
+if(!isset($_SESSION['sess_path_referer'])) $_SESSION['sess_path_referer'] = "";
+if(!isset($_SESSION['sess_file_return'])) $_SESSION['sess_file_return'] = "";
+if(!isset($_SESSION['sess_file_forward'])) $_SESSION['sess_file_forward'] = "";
+
+$breakfile=$root_path.$_SESSION['sess_path_referer'];
+
+if(!file_exists($breakfile)) {
+ $breakfile=$root_path.'main/startframe.php';
+}
+
+$breakfile=$breakfile.URL_APPEND;
+$returnfile=$breakfile;
+
+$_SESSION['sess_file_return']=basename(__FILE__);
+$_SESSION['sess_path_referer']=str_replace($doc_root.'/','',__FILE__);
+
+if(!isset($stb)) $stb=0;
+
+# Start Smarty templating here
+ /**
+ * LOAD Smarty
+ */
+
+ # Note: it is advisable to load this after the inc_front_chain_lang.php so
+ # that the smarty script can use the user configured template theme
+
+ require_once($root_path.'gui/smarty_template/smarty_care.class.php');
+ $smarty = new smarty_care('common');
+
+ # Create a helper smarty object without reinitializing the GUI
+ $smarty2 = new smarty_care('common', FALSE);
+
+# Added for the common header top block
+
+ $smarty->assign('sToolbarTitle',$LDTechSupport);
+
+ # Added for the common header top block
+
$smarty->assign('pbHelp',"javascript:gethelp('submenu1.php','$LDTechSupport')");
+
+ $smarty->assign('breakfile',$breakfile);
+
+ # Window bar title
+ $smarty->assign('title',$LDTechSupport);
+
+ # Add the bot onLoad code
+ if(isset($stb)){
+ if($stb==1) $smarty->assign('sOnLoadJs','onLoad="startbot(\'r\')"');
+ else if($stb==2)
$smarty->assign('sOnLoadJs','onLoad="startbot(\'f\')"');
+ }
+
+ # Collect extra javascript code
+
+ ob_start();
+
+?>
+
+<script language="javascript" >
+<!--
+<?php
+
+if($stb)
+echo '
+function startbot(d)
+{
+ if(d=="r")
repabotwin=window.open("technik-repabot.php'.URL_REDIRECT_APPEND.'","repabotwin","width=300,height=150,menubar=no,resizable=yes,scrollbars=yes");
+ else if(d=="f")
fragebotwin=window.open("technik-fragebot.php'.URL_REDIRECT_APPEND.'","fragebotwin","width=300,height=150,menubar=no,resizable=yes,scrollbars=yes");
+}
+';
+?>
+// -->
+</script>
+
+<?php
+
+ $sTemp = ob_get_contents();
+ob_end_clean();
+$smarty->append('JavaScript',$sTemp);
+
+ # Prepare the submenu icons
+
+ $aSubMenuIcon=array(createComIcon($root_path,'settings_tree.gif','0'),
+
createComIcon($root_path,'sitemap_animator.gif','0'),
+
createComIcon($root_path,'icn_rad.gif','0'),
+
createComIcon($root_path,'eyeglass.gif','0'),
+
createComIcon($root_path,'discussions.gif','0'),
+
createComIcon($root_path,'sitemap_animator.gif','0')
+
);
+
+# Prepare the submenu item descriptions
+
+$aSubMenuText=array($LDReRepairTxt,
+
$LDRepabotActivateTxt,
+
$LDRepairReportTxt,
+
$LDReportsArchiveTxt,
+
$LDQuestionsTxt,
+
$LDQBotActivateTxt
+
);
+
+# Prepare the submenu item links indexed by their template tags
+
+$aSubMenuItem=array('LDPharmaOrder' => "<a
href=\"technik-reparatur-anfordern.php".URL_APPEND."\">$LDReRepair</a>",
+
'LDHow2Order' => "<a
href=\"tech-bot-pass.php".URL_APPEND."&mode=repabot\">$LDRepabotActivate</a>",
+
'LDOrderCat' => "<a
href=\"technik-reparatur-melden.php".URL_APPEND."\">$LDRepairReport</a>",
+
'LDOrderArchive' => "<a
href=\"technik-report-arch.php".URL_APPEND."\">$LDReportsArchive</a>",
+
'LDPharmaDb' => "<a
href=\"technik-questions.php".URL_APPEND."\">$LDQuestions</a>",
+
'LDOrderBotActivate' => "<a
href=\"tech-bot-pass.php".URL_APPEND."&mode=fragebot\">$LDQBotActivate</a>",
+
);
+
+# Create the submenu rows
+
+$iRunner = 0;
+
+while(list($x,$v)=each($aSubMenuItem)){
+ $sTemp='';
+ ob_start();
+ if($cfg['icons'] != 'no_icon')
$smarty2->assign('sIconImg','<img '.$aSubMenuIcon[$iRunner].'>');
+ $smarty2->assign('sSubMenuItem',$v);
+ $smarty2->assign('sSubMenuText',$aSubMenuText[$iRunner]);
+ $smarty2->display('common/submenu_row.tpl');
+ $sTemp = ob_get_contents();
+ ob_end_clean();
+ $iRunner++;
+ $smarty->assign($x,$sTemp);
+}
+
+# Assign the submenu to the mainframe center block
+
+ $smarty->assign('sMainBlockIncludeFile','tech/submenu_technik.tpl');
+
+ /**
+ * show Template
+ */
+
+ $smarty->display('common/mainframe.tpl');
+?>
Deleted: care2x/branches/gettext/modules/tech/technik.php
===================================================================
--- care2x/branches/gettext/modules/tech/technik.php 2010-06-30 15:59:51 UTC
(rev 6510)
+++ care2x/branches/gettext/modules/tech/technik.php 2010-06-30 16:00:39 UTC
(rev 6511)
@@ -1,153 +0,0 @@
-<?php
-error_reporting(E_COMPILE_ERROR|E_ERROR|E_CORE_ERROR);
-require('./roots.php');
-require($root_path.'/include/helpers/inc_environment_global.php');
-/**
-* CARE2X Integrated Hospital Information System Deployment 2.1 - 2004-10-02
-* GNU General Public License
-* Copyright 2002,2003,2004,2005 Elpidio Latorilla
-* [email protected],
-*
-* See the file "copy_notice.txt" for the licence notice
-*/
-define('LANG_FILE','tech.php');
-define('NO_2LEVEL_CHK',1);
-require_once($root_path.'include/helpers/inc_front_chain_lang.php');
-// reset all 2nd level lock cookies
-require($root_path.'include/helpers/inc_2level_reset.php');
-
-if(!isset($_SESSION['sess_path_referer'])) $_SESSION['sess_path_referer'] = "";
-if(!isset($_SESSION['sess_file_return'])) $_SESSION['sess_file_return'] = "";
-if(!isset($_SESSION['sess_file_forward'])) $_SESSION['sess_file_forward'] = "";
-
-$breakfile=$root_path.$_SESSION['sess_path_referer'];
-
-if(!file_exists($breakfile)) {
- $breakfile=$root_path.'main/startframe.php';
-}
-
-$breakfile=$breakfile.URL_APPEND;
-$returnfile=$breakfile;
-
-$_SESSION['sess_file_return']=basename(__FILE__);
-$_SESSION['sess_path_referer']=str_replace($doc_root.'/','',__FILE__);
-
-if(!isset($stb)) $stb=0;
-
-# Start Smarty templating here
- /**
- * LOAD Smarty
- */
-
- # Note: it is advisable to load this after the inc_front_chain_lang.php so
- # that the smarty script can use the user configured template theme
-
- require_once($root_path.'gui/smarty_template/smarty_care.class.php');
- $smarty = new smarty_care('common');
-
- # Create a helper smarty object without reinitializing the GUI
- $smarty2 = new smarty_care('common', FALSE);
-
-# Added for the common header top block
-
- $smarty->assign('sToolbarTitle',$LDTechSupport);
-
- # Added for the common header top block
-
$smarty->assign('pbHelp',"javascript:gethelp('submenu1.php','$LDTechSupport')");
-
- $smarty->assign('breakfile',$breakfile);
-
- # Window bar title
- $smarty->assign('title',$LDTechSupport);
-
- # Add the bot onLoad code
- if(isset($stb)){
- if($stb==1) $smarty->assign('sOnLoadJs','onLoad="startbot(\'r\')"');
- else if($stb==2)
$smarty->assign('sOnLoadJs','onLoad="startbot(\'f\')"');
- }
-
- # Collect extra javascript code
-
- ob_start();
-
-?>
-
-<script language="javascript" >
-<!--
-<?php
-
-if($stb)
-echo '
-function startbot(d)
-{
- if(d=="r")
repabotwin=window.open("technik-repabot.php'.URL_REDIRECT_APPEND.'","repabotwin","width=300,height=150,menubar=no,resizable=yes,scrollbars=yes");
- else if(d=="f")
fragebotwin=window.open("technik-fragebot.php'.URL_REDIRECT_APPEND.'","fragebotwin","width=300,height=150,menubar=no,resizable=yes,scrollbars=yes");
-}
-';
-?>
-// -->
-</script>
-
-<?php
-
- $sTemp = ob_get_contents();
-ob_end_clean();
-$smarty->append('JavaScript',$sTemp);
-
- # Prepare the submenu icons
-
- $aSubMenuIcon=array(createComIcon($root_path,'settings_tree.gif','0'),
-
createComIcon($root_path,'sitemap_animator.gif','0'),
-
createComIcon($root_path,'icn_rad.gif','0'),
-
createComIcon($root_path,'eyeglass.gif','0'),
-
createComIcon($root_path,'discussions.gif','0'),
-
createComIcon($root_path,'sitemap_animator.gif','0')
-
);
-
-# Prepare the submenu item descriptions
-
-$aSubMenuText=array($LDReRepairTxt,
-
$LDRepabotActivateTxt,
-
$LDRepairReportTxt,
-
$LDReportsArchiveTxt,
-
$LDQuestionsTxt,
-
$LDQBotActivateTxt
-
);
-
-# Prepare the submenu item links indexed by their template tags
-
-$aSubMenuItem=array('LDPharmaOrder' => "<a
href=\"technik-reparatur-anfordern.php".URL_APPEND."\">$LDReRepair</a>",
-
'LDHow2Order' => "<a
href=\"tech-bot-pass.php".URL_APPEND."&mode=repabot\">$LDRepabotActivate</a>",
-
'LDOrderCat' => "<a
href=\"technik-reparatur-melden.php".URL_APPEND."\">$LDRepairReport</a>",
-
'LDOrderArchive' => "<a
href=\"technik-report-arch.php".URL_APPEND."\">$LDReportsArchive</a>",
-
'LDPharmaDb' => "<a
href=\"technik-questions.php".URL_APPEND."\">$LDQuestions</a>",
-
'LDOrderBotActivate' => "<a
href=\"tech-bot-pass.php".URL_APPEND."&mode=fragebot\">$LDQBotActivate</a>",
-
);
-
-# Create the submenu rows
-
-$iRunner = 0;
-
-while(list($x,$v)=each($aSubMenuItem)){
- $sTemp='';
- ob_start();
- if($cfg['icons'] != 'no_icon')
$smarty2->assign('sIconImg','<img '.$aSubMenuIcon[$iRunner].'>');
- $smarty2->assign('sSubMenuItem',$v);
- $smarty2->assign('sSubMenuText',$aSubMenuText[$iRunner]);
- $smarty2->display('common/submenu_row.tpl');
- $sTemp = ob_get_contents();
- ob_end_clean();
- $iRunner++;
- $smarty->assign($x,$sTemp);
-}
-
-# Assign the submenu to the mainframe center block
-
- $smarty->assign('sMainBlockIncludeFile','tech/submenu_technik.tpl');
-
- /**
- * show Template
- */
-
- $smarty->display('common/mainframe.tpl');
-?>
This was sent by the SourceForge.net collaborative development platform, the
world's largest Open Source development site.
------------------------------------------------------------------------------
This SF.net email is sponsored by Sprint
What will you do first with EVO, the first 4G phone?
Visit sprint.com/first -- http://p.sf.net/sfu/sprint-com-first
_______________________________________________
Care2002-developers mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/care2002-developers