aboutsummaryrefslogtreecommitdiff
path: root/include/contacts-overview.php
blob: 2376f5ab9bd2599f33e1a883ae297506eaad9e51 (plain) (blame)
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
<?php
/**
 * BusinessAdmin: administrative software for small companies
 * Copyright (C) 2015 Camil Staps (ViviSoft)
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

require_once(__DIR__ . '/../login.php');
?>

<div class="col-lg-7 col-md-7">
	<div class="panel panel-default">
		<div class="panel-heading">Overview</div>
		<div class="panel-body table-responsive">
			<table class="table table-bordered table-striped mixitup dataTable" id="overview-contacts">
				<thead>
					<tr>
						<th class="mixitup-sort sorting" data-sort="mixerOrderId:desc">#</th>
						<th class="mixitup-sort sorting" data-sort="mixerOrderName:desc">Name</th>
						<th>Address</th>
						<th>Language</th>
						<th>Tools</th>
					</tr>
				</thead>
				<tbody>
					<?php
					$contacts = Contact::search($_pdo);
					foreach ($contacts as $contact) {
						echo "<tr class='mix'
								data-mixer-order-id='{$contact->id}'
								data-mixer-order-name='{$contact->name}'>
							<td class='col-min-width'>{$contact->id}</td>
							<td class='col-min-width'>
								<a href='#' class='editable' id='editable-contact-{$contact->id}-name' data-type='text' data-pk='{$contact->id}' data-url='".Constants::url_external."contacts/edit'>{$contact->name}</a><br/>
								({$contact->getClient()->name})
							</td>
							<td class='col-max-width'>
								<a href='#' class='editable' id='editable-contact-{$contact->id}-email' data-type='text' data-pk='{$contact->id}' data-url='".Constants::url_external."contacts/edit'>{$contact->email}</a><br/>
								<br/>
								<a href='#' class='editable' id='editable-contact-{$contact->id}-address' data-type='text' data-pk='{$contact->id}' data-url='".Constants::url_external."contacts/edit'>{$contact->address}</a><br/>
								" . ($contact->address_2 != '' ? "<a href='#' class='editable' id='editable-contact-{$contact->id}-address_2' data-type='text' data-pk='{$contact->id}' data-url='".Constants::url_external."contacts/edit'>{$contact->address_2}</a><br/>" : "") . "
								<a href='#' class='editable' id='editable-contact-{$contact->id}-postal_code' data-type='text' data-pk='{$contact->id}' data-url='".Constants::url_external."contacts/edit'>{$contact->postal_code}</a>
								<a href='#' class='editable' id='editable-contact-{$contact->id}-city' data-type='text' data-pk='{$contact->id}' data-url='".Constants::url_external."contacts/edit'>{$contact->city}</a><br/>
								<a href='#' class='editable' id='editable-contact-{$contact->id}-country' data-type='text' data-pk='{$contact->id}' data-url='".Constants::url_external."contacts/edit'>{$contact->country}</a>
							</td>
							<td class='col-min-width'>
								<a href='#' class='editable' id='editable-contact-{$contact->id}-language' data-type='text' data-pk='{$contact->id}' data-url='".Constants::url_external."contacts/edit'>{$contact->language}</a>
							</td>
							<td class='col-min-width'>
								<a title='View' href='?id={$contact->id}' class='btn btn-primary btn-circle fa fa-arrow-right'></a>
								<a title='Delete' href='?delete={$contact->id}' class='btn btn-danger btn-circle fa fa-times'></a>
							</td>
						</tr>";
					}
					if (count($contacts) == 0) {
						echo "<tr><td colspan='5'>There are no contacts in the database.</td></tr>";
					}
					?>
				</tbody>
			</table>
		</div>
	</div>
</div>
<div class="col-lg-5 col-md-5">
	<div class="panel panel-default">
		<div class="panel-heading">Create new</div>
		<div class="panel-body">
			<form role="form" id="newContact" action='<?=Constants::url_external?>contacts/new' method="post" class="bootstrapValidator ajaxify"
				data-ajaxify-options='{"success":"newContactSuccess","error":"newContactError","beforeSubmit":"newContactBeforeSubmit"}'>
				<div class="ajaxify-response alert alert-dismissable"><button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button><span class="ajaxify-response-text"></span></div>
				<div class="form-group">
					<label>Client:</label>
					<select name="clientId" class="form-control">
						<?php
						foreach (Client::search($_pdo) as $client) {
							echo "<option value='{$client->id}'>{$client->name}</option>";
						}
						?>
					</select>
				</div>
				<div class="form-group">
					<label>Name:</label>
					<input
						type="text" name="name" class="form-control" placeholder="Name"
						data-bv-notempty="true" data-bv-notempty-message="You have to provide a name"/>
				</div>
				<div class="form-group">
					<label>Email:</label>
					<input
						type="email" name="email" class="form-control" placeholder="Email"
						data-bv-notempty="true" data-bv-notempty-message="You have to provide a valid email address"/>
				</div>
				<div class="form-group">
					<label>Address:</label>
					<input
						type="text" name="address" class="form-control" placeholder="Address"
						data-bv-notempty="true" data-bv-notempty-message="You have to provide an address"/>
				</div>
				<div class="form-group">
					<input
						type="text" name="address_2" class="form-control" placeholder="Second address line (optional)" />
				</div>
				<div class="form-group">
					<input
						type="text" name="postal_code" class="form-control" placeholder="Postal code"
						data-bv-notempty="true" data-bv-notempty-message="You have to provide a postal code"/>
				</div>
				<div class="form-group">
					<input
						type="text" name="city" class="form-control" placeholder="City"
						data-bv-notempty="true" data-bv-notempty-message="You have to provide a city"/>
				</div>
				<div class="form-group">
					<input
						type="text" name="country" class="form-control" placeholder="Country"
						data-bv-notempty="true" data-bv-notempty-message="You have to provide a country"/>
				</div>
				<button type="submit" class="btn btn-default">Go</button>
			</form>
			<script type="text/javascript">
			// Callback for before the form is submitted
			function newContactBeforeSubmit() {
				$('#newContact input').prop('disabled', true);
				$('#newContact .ajaxify-response').hide().removeClass('alert-success alert-danger').find('.ajaxify-response-text').html('');
			}

			// Callback for when the form is successfully submitted
			function newContactSuccess(data) {
				$('#newContact .ajaxify-response')
					.addClass(data.success ? 'alert-success' : 'alert-danger')
					.show()
					.find('.ajaxify-response-text')
						.html(data.message);

				$('#newContact input, #newContact button').prop('disabled', false);
				$('#newContact').data('bootstrapValidator').resetForm();
				if (data.success) {
					$('#newContact input').val('');
				}
			}

			// Callback for when form submission encountered an error
			function newContactError() {
				$('#newContact .ajaxify-response')
					.addClass('alert-danger')
					.show()
					.find('.ajaxify-response-text')
						.html('An unknown error occurred. Please contact support.');

				$('#newContact input, #newContact button').prop('disabled', false);
					$('#newContact').data('bootstrapValidator').resetForm();
			}
			</script>
		</div>
	</div>
</div>