Skip to content

Commit

Permalink
add instructions and a home link
Browse files Browse the repository at this point in the history
  • Loading branch information
robbat2 committed Jun 20, 2003
1 parent 59f7b0b commit c71b1e2
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
7 changes: 5 additions & 2 deletions leftframe.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
/* $Id: leftframe.php,v 1.8 2003/05/07 20:48:10 robbat2 Exp $ */
/* $Id: leftframe.php,v 1.9 2003/06/20 18:19:31 robbat2 Exp $ */

include('header.inc.php');

Expand Down Expand Up @@ -44,10 +44,13 @@ function item($n,$type = 'v') {
'Transactions'
);

//homepage link
echo html_a('rightframe.php','Home','leftnavitem','target="main"').'<br />'."\n";
//item links
foreach($a as $i) {
item($i,'va');
};

//logout stuff
//echo html_a('transactions.php','Transactions','leftnavitem','target="_top"').'<br />'."\n";
echo html_a('logout.php','Logout','leftnavitem','target="_top"')."\n";

Expand Down
10 changes: 9 additions & 1 deletion rightframe.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
/* $Id: rightframe.php,v 1.2 2003/03/13 11:51:42 robbat2 Exp $ */
/* $Id: rightframe.php,v 1.3 2003/06/20 18:19:31 robbat2 Exp $ */
/* vim: set ft=php expandtab shiftwidth=4 softtabstop=4 tabstop=4: */
include 'header.inc.php';

Expand All @@ -8,6 +8,14 @@
<br />
<br />
<h2 class="title">Include some running statisitcs here for the admin to see.</h2>
<h3>Adding new items quickstart:</h3>
<ol>
<li>Add the product manufacter (and vendor if different) via the <a href'addedit.php?table=Vendors'>Vendor Add</a> page.</li>
<li>Add the purchase order via the <a href'addedit.php?table=Purchases'>Purchase Add</a> page. On this page, 'Vendor' represents the company that sold it to you.</li>
<li>Add the object type via the <a href'addedit.php?table=ObjectTypes'>Object Types_Add</a> page. On this page, 'Vendor' represents the company that manufacteres the product.</li>
<li>Add the object via the <a href'addedit.php?table=Objects'>Object_Add</a> page.</li>
<li>(Repeat the above steps as needed)</li>
</ol>
<?php
include 'footer.inc.php';
?>

0 comments on commit c71b1e2

Please sign in to comment.