/[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

Diff of /rnd.php

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.1.1.1 by dpavlin, Tue Feb 20 11:37:21 2001 UTC revision 1.10 by dpavlin, Tue Oct 2 09:59:03 2001 UTC
# Line 6  $smarty = new Smarty; Line 6  $smarty = new Smarty;
6    
7  $smarty->assign( array ( Title=>"Pliva d.d." ) );  $smarty->assign( array ( Title=>"Pliva d.d." ) );
8    
9  $multi_page=array(  $sub_part=substr($part,0,strpos($part,"-"));
10          "rnd.php?part=MIXIS-HomePR",  
11          "rnd.php?part=MIXIS-Sci-TechPR"  if ($sub_part == "MIXIS") {
12          );          $multi_page=array(
13                    "rnd.php?part=MIXIS-HomePR",
14  $section=str_replace(".php","",basename($PHP_SELF));                  "rnd.php?part=MIXIS-Sci-TechPR"
15  $smarty->assign("section",$section);                  );
16    } elseif ($sub_part == "Technology") {
17  $title="R&D";          $multi_page=array(
18  $lpic="rnd"; $lext=".gif";                  "rnd.php?part=Technology-HighThroughput",
19  $tmp = time() % 2;                  "rnd.php?part=Technology-Microarrays"
20  $mpic="rnd_u".($tmp+1).".gif";                  );
21    } elseif ($sub_part == "Profile") {
22            $multi_page=array(
23                    "rnd.php?part=Profile-antiinfectives1",
24                    "rnd.php?part=Profile-antiinfectives2"
25                    );
26    } else {
27            $multi_page=array(
28                    "rnd.php?part=Azithromycin1",
29                    "rnd.php?part=Azithromycin2",
30                    "rnd.php?part=Azithromycin3"
31                    );
32    }
33    
34    include("section.inc");
35    
36  $main_file="./html/";  $main_file="./html/";
37  if (file_exists($main_file.$part.".htm")) {  if (file_exists($main_file.$part.".htm")) {
38          $main_file.=$part.".htm";          $main_file.=$part.".htm";
39          $main=join('',file($main_file));          $main=join('',file($main_file));
40  } else {  } else {
41          $main=$smarty->fetch("rnd.tpl");          $main=join('',file("./html/RnD-Main.htm"));
42  }  }
43    
44    

Legend:
Removed from v.1.1.1.1  
changed lines
  Added in v.1.10

  ViewVC Help
Powered by ViewVC 1.1.26