-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbusiness.php
More file actions
78 lines (56 loc) · 2.45 KB
/
business.php
File metadata and controls
78 lines (56 loc) · 2.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<?php
require_once './php/essentials.php';
//include_once './php/nocache.php';
require_once './php/identify/user.php';
$headings = array($user['user_name']);
$navbox = TRUE;
$urls = array("user.php?user_id=$user_id");
require_once './php/identify/business.php';
$headings[] = $business['business_name'];
require_once './php/header_one.php';
?>
<meta name="viewport" content="width=device-width" />
<style type="text/css">
/* <![CDATA[ */
ul {list-style-type: none;}
li {margin-bottom: 0.4em;}
/* ]]> */
</style>
<?php
require_once './php/header_two.php';
?>
<h3>Business Details</h3>
<p>Click on the following link to view or change basic details such as the
business address.</p>
<ul>
<li><a href="business_details.php<?php echo $unique_id; ?>">Business details</a></li>
</ul>
<h3>Clients (Income Groups) & Address Book</h3>
<p>Click the first to organise clients and recurring jobs into categories and
sub-categories. The second will take you to the address book for the
user <?php echo $user_name; ?>, which means that you will have to leave the
business pages for the business <?php echo $business_name; ?>.</p>
<ul>
<li><a href="clients.php<?php echo $unique_id; ?>">Clients (groups of jobs)</a></li>
<li><a href="contacts.php?user_id=<?php echo $user_id; ?>">Address Book</a></li>
</ul>
<h3>Accounts</h3>
<p>Click on any of the links below to perform the associated task. Use
the search options to find a single entry (for example, to update it) or
to produce a summarised list of entries (for example, to produce a list of
jobs for which you have not yet been paid).</p>
<ul>
<li><a href="commission.php<?php echo $unique_id; ?>&job_id=newj">Create a new job</a></li>
<li><a href="search_in.php<?php echo $unique_id; ?>">Search income</a></li>
<li><a href="expense.php<?php echo $unique_id; ?>&expense_id=newe">Create a new expense</a></li>
<li><a href="search_out.php<?php echo $unique_id; ?>">Search expenses</a></li>
</ul>
<h3>One Place to do Everything</h3>
<p>View all accounts:</p>
<ul>
<li><a href="diary.php<?php echo $unique_id; ?>">by month</a> or</li>
<li><a href="diary.php<?php echo $unique_id, '&year=',
( date('md') > '0405' ? idate('Y') + 1 : date('Y') ); ?>">by year</a></li>
</ul>
<p>At the bottom of the page, you will find links to create new jobs and expenses.</p>
<?php include './php/footer.php';