/[corp_html]/rnd.php
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Annotation of /rnd.php

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.6 - (hide annotations)
Sat Mar 3 12:56:33 2001 UTC (23 years, 1 month ago) by dpavlin
Branch: MAIN
Changes since 1.5: +1 -0 lines
bolji title-ovi stranica

1 dpavlin 1.1 <?php
2     require("Smarty.class.php");
3     require("conn.inc");
4    
5     $smarty = new Smarty;
6    
7     $smarty->assign( array ( Title=>"Pliva d.d." ) );
8    
9 dpavlin 1.2 $sub_part=substr($part,0,strpos($part,"-"));
10    
11     if ($sub_part == "MIXIS") {
12     $multi_page=array(
13     "rnd.php?part=MIXIS-HomePR",
14     "rnd.php?part=MIXIS-Sci-TechPR"
15     );
16     } elseif ($sub_part == "Technology") {
17     $multi_page=array(
18     "rnd.php?part=Technology-HighThroughput",
19     "rnd.php?part=Technology-Microarrays"
20     );
21 dpavlin 1.4 } elseif ($sub_part == "Profile") {
22     $multi_page=array(
23     "rnd.php?part=Profile-antiinfectives1",
24     "rnd.php?part=Profile-antiinfectives2"
25     );
26     } elseif ($sub_part == "Pipeline") {
27     $multi_page=array(
28     "rnd.php?part=Pipeline-1",
29     "rnd.php?part=Pipeline-2"
30     );
31 dpavlin 1.2 }
32 dpavlin 1.1
33     $section=str_replace(".php","",basename($PHP_SELF));
34     $smarty->assign("section",$section);
35    
36     $title="R&amp;D";
37 dpavlin 1.6 if ($menu_item) $title.=" : $menu_item";
38 dpavlin 1.1 $lpic="rnd"; $lext=".gif";
39     $tmp = time() % 2;
40     $mpic="rnd_u".($tmp+1).".gif";
41     $main_file="./html/";
42     if (file_exists($main_file.$part.".htm")) {
43     $main_file.=$part.".htm";
44     $main=join('',file($main_file));
45     } else {
46 dpavlin 1.5 $main=join('',file("./html/RnD-Main.htm"));
47 dpavlin 1.1 }
48    
49    
50     $smarty->assign( array ( lpic=>$lpic, lext=>$lext, mpic=>$mpic, Section_title=>$title ) );
51    
52     include("common.inc");
53     $smarty->assign("MAIN",$main);
54    
55     $smarty->display("index.tpl");
56    
57     ?>

  ViewVC Help
Powered by ViewVC 1.1.26