-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdashboard_settings_form.tpl.php
60 lines (57 loc) · 2.07 KB
/
dashboard_settings_form.tpl.php
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
<?php
// $Id: dashboard_settings_form.tpl.php,v 1.0 2017/11/28 shafiq Exp $
global $base_url;
/**
* @file dashboard_settings_form.tpl.php
* Default theme implementation for dashboard settings form information.
*
*/
$form = $variables['form'];
?>
<div class="dashboard-settings">
<div class="content-row clearfix">
<table cellpadding="0" cellspacing="0" class="dashboard-settings-table">
<tr>
<th colspan="3">Select Sections to Auto Refresh</th>
</tr>
<tr>
<td><?php print drupal_render($form['mrdash_rx_order_amount']); ?></td>
<td><?php print drupal_render($form['mrdash_po_amount']); ?></td>
<td><?php print drupal_render($form['mrdash_sales_amount']); ?></td>
</tr>
<tr>
<td><?php print drupal_render($form['mrdash_rx_payments']); ?></td>
<td><?php print drupal_render($form['mrdash_order_submitted']); ?></td>
<td><?php print drupal_render($form['mrdash_rx_pending']); ?></td>
</tr>
<tr>
<td><?php print drupal_render($form['mrdash_rx_scheduled']); ?></td>
<td><?php print drupal_render($form['mrdash_rx_upcoming_refills']); ?></td>
<td><?php print drupal_render($form['mrdash_expiring_rx']); ?></td>
</tr>
<tr>
<td><?php print drupal_render($form['mrdash_expiring_arb']); ?></td>
<td><?php print drupal_render($form['mrdash_expiring_cc']); ?></td>
<td><?php print drupal_render($form['mrdash_expiring_profile_cc']); ?></td>
</tr>
<tr>
<td><?php print drupal_render($form['mrdash_total_clinics']); ?></td>
<td><?php print drupal_render($form['mrdash_silentpost']); ?></td>
<td><?php print drupal_render($form['mrdash_rx_created_refills']); ?></td>
</tr>
<tr>
<td><?php print drupal_render($form['mrdash_clinic_vs_staff']); ?></td>
<td> </td>
<td> </td>
</tr>
</table>
</div>
<div class="content-row clearfix">
<?php print drupal_render($form['dashboard_refresh_interval']); ?>
</div>
<div class="content-row actions clearfix">
<?php print drupal_render($form['save']); ?>
<?php print drupal_render($form['cancel']); ?>
</div>
<?php print drupal_render_children($form); ?>
</div>