/[corp_html]/new.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 /new.php

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

revision 1.18 by dpavlin, Mon Oct 1 14:05:16 2001 UTC revision 1.28 by dpavlin, Tue May 7 14:02:33 2002 UTC
# Line 14  if (isset($from)) { Line 14  if (isset($from)) {
14    
15  $sql_where="where $visible_is_true";  $sql_where="where $visible_is_true";
16    
17    unset($menu_item);      // don't modify title in section.inc
18  include("section.inc");  include("section.inc");
19    
20  if ($section == "investor") {  if ($section == "investor") {
# Line 21  if ($section == "investor") { Line 22  if ($section == "investor") {
22          if (! isset($type)) {          if (! isset($type)) {
23                  $sql_where .= " and type='i'";                  $sql_where .= " and type='i'";
24          }          }
         $title.=" : Investors News";  
25  } else {  } else {
         $title="What's New";  
         $lpic="new"; $lext=".jpg";  
         $mpic="new.gif";  
26          $back_url="index.php";          $back_url="index.php";
27            $sql_where.=" and (type='a' or type='c' or type='e' or type='f' or type='i' or type='n' or type='p' or type='r')";              // don't show company profile
28  }  }
29    
30  $smarty->assign( array ( lpic=>$lpic, lext=>$lext, mpic=>$mpic, ) );  $smarty->assign( array ( lpic=>$lpic, lext=>$lext, mpic=>$mpic, ) );
31    
32  include("find_html_file.inc");  include("find_html_file.inc");
33    include("news_type.inc");
34    
35  if (file_exists(find_html_file("news",$more))) {  if (file_exists(find_html_file("news",$more))) {
36    
# Line 46  if (file_exists(find_html_file("news",$m Line 45  if (file_exists(find_html_file("news",$m
45          if (isset($type)) {          if (isset($type)) {
46                  if ($type == "n") {                  if ($type == "n") {
47                          $sql_where .= " and (type='n' or type='i')";                          $sql_where .= " and (type='n' or type='i')";
                         $title.=" : News";  
48                  } elseif ($type == "e") {                  } elseif ($type == "e") {
49                          $sql_where .= " and type='e'";                          $sql_where .= " and (type='e' or type='f')";    
50                          $title.=" : Events";                  } elseif ($type == "f") {
51                            $sql_where .= " and type='f'";
52                  } elseif ($type == "c") {                  } elseif ($type == "c") {
53                          $sql_where .= " and type='c'";                          $sql_where .= " and type='c'";
                         $title.=" : Community";  
54                  }                  }
55          }          }
56    
# Line 89  if (file_exists(find_html_file("news",$m Line 87  if (file_exists(find_html_file("news",$m
87          if ($num_selected == 10) {          if ($num_selected == 10) {
88                  $tmp="$PHP_SELF?start=".($start+10);                  $tmp="$PHP_SELF?start=".($start+10);
89                  if ($days) $tmp.="&days=$days";                  if ($days) $tmp.="&days=$days";
90                    if ($from) $tmp.="&from=$from";
91                    if ($type) $tmp.="&type=$type";
92                  $smarty->assign(array(                  $smarty->assign(array(
93                          "multi_page_show" => 1,                          "multi_page_show" => 1,
94                          "multi_page_next" => $tmp                          "multi_page_next" => $tmp
# Line 97  if (file_exists(find_html_file("news",$m Line 97  if (file_exists(find_html_file("news",$m
97          if ($start && $start >= 10) {          if ($start && $start >= 10) {
98                  $tmp="$PHP_SELF?start=".($start-10);                  $tmp="$PHP_SELF?start=".($start-10);
99                  if ($days) $tmp.="&days=$days";                  if ($days) $tmp.="&days=$days";
100                    if ($from) $tmp.="&from=$from";
101                    if ($type) $tmp.="&type=$type";
102                  $smarty->assign(array(                  $smarty->assign(array(
103                          "multi_page_show" => 1,                          "multi_page_show" => 1,
104                          "multi_page_prev" => $tmp                          "multi_page_prev" => $tmp
# Line 104  if (file_exists(find_html_file("news",$m Line 106  if (file_exists(find_html_file("news",$m
106          }          }
107    
108          if (isset($id) && $num_selected == 1) {          if (isset($id) && $num_selected == 1) {
109                  if ($data[0][type] == "n") {                  $title.=" : ".$news_type[ $data[0][type] ]." : ".$data[0][title_lc];
110                          $title.=" : News : ".$data[0][title_lc];          } else {
111                  } elseif ($data[0][type] == "e") {                  $title.=" : ".$news_type[ $data[0][type] ];
                         $title.=" : Event : ".$data[0][title_lc];  
                 } elseif ($data[0][type] == "c") {  
                         $title.=" : Community : ".$data[0][title_lc];  
                 } elseif ($data[0][type] == "r") {  
                         $title.=" : Result : ".$data[0][title_lc];  
                 } elseif ($data[0][type] == "i") {  
                         $title.=" : Investors News : ".$data[0][title_lc];  
                 } elseif ($data[0][type] == "a") {  
                         $title.=" : Annual Report : ".$data[0][title_lc];  
                 } elseif ($data[0][type] == "p") {  
                         $title.=" : Presentations : ".$data[0][title_lc];  
                 }  
112          }          }
113    
   
114          if (isset($days) && $num_selected == 0) {          if (isset($days) && $num_selected == 0) {
115                  $warning = "There are no news for last $days days.";                  $warning = "There are no news for last $days days.";
116          } elseif ($main == "" && $num_selected == 0) {          } elseif ($main == "" && $num_selected == 0) {

Legend:
Removed from v.1.18  
changed lines
  Added in v.1.28

  ViewVC Help
Powered by ViewVC 1.1.26