/[health_html]/inc/links.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

Contents of /inc/links.php

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.7 - (show annotations)
Tue Sep 25 15:38:04 2001 UTC (22 years, 7 months ago) by ravilov
Branch: MAIN
CVS Tags: HEAD
Changes since 1.6: +0 -0 lines
FILE REMOVED
Major changes. Too numeruous to mention all here.

1 <?php
2 include_once("inc/Smarty.class.php");
3 include_once("inc/Smarty.local.php");
4 function GetLinks($read, $more, $more_title, $id, $cat, $name, $edit, $updown = false, $up = false, $down = false) {
5 $t = new Smarty();
6 global $section, $section_menu;
7 $t->assign("section", $section);
8 $t->assign("section_menu", $section_menu);
9 $t->assign("id", $id);
10 $t->assign("cat", $cat);
11 $t->assign("name", $name);
12 $t->assign("read", $read);
13 $t->assign("more", $more);
14 $t->assign("more_new", strstr($more, "://") ? true : false);
15 $t->assign("more_title", $more_title);
16 $t->assign("edit", $edit);
17 $t->assign("updown", $updown);
18 $t->assign("up", $up);
19 $t->assign("down", $down);
20 return $t->fetch("links.tpl");
21 }
22 ?>

  ViewVC Help
Powered by ViewVC 1.1.26