-
Notifications
You must be signed in to change notification settings - Fork 53
/
template-download.php
68 lines (66 loc) · 2.54 KB
/
template-download.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
60
61
62
63
64
65
66
67
68
<?php
/**
* Template Name: Download
*
* @package Genesis CRM
* @author Bill Erickson <[email protected]>
* @copyright Copyright (c) 2011, Bill Erickson
* @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
*
*/
global $prefix;
wp_head(); ?>
<table id="download">
<tr>
<th>Prospect ID</th>
<th>Client</th>
<th>Client Email</th>
<th>Client Phone</th>
<th>Other Referral</th>
<th>Points of Contact</th>
<th>Contact Date</th>
<th>Sources</th>
<th>Category</th>
<th>Project Status</th>
<th>Status Summary</th>
<th>Forwarded to</th>
<th>Reason</th>
<th>Revenue</th>
<th>Expense</th>
<th>Start Date</th>
<th>End Date</th>
<th>Sales Status</th>
<th>Actions Completed</th>
</tr>
<?php
$args = array(
'posts_per_page' => '-1',
'category_name' => 'complete',
);
$downloads = new WP_Query($args);
while ($downloads->have_posts()): $downloads->the_post();
global $post; ?>
<tr>
<td><a href="<?php the_permalink();?>"><?php echo $post->ID;?></a></td>
<td><?php the_title();?></td>
<td><?php echo get_custom_field($prefix.'client_email');?></td>
<td><?php echo get_custom_field($prefix.'client_phone');?></td>
<td><?php echo get_custom_field($prefix.'other_referral');?></td>
<td><?php $poc = get_the_terms( $post->ID, 'poc', '', ', ', '' ); $list = ''; if ($poc) { foreach ($poc as $data) $list .= $data->name.', '; echo $list; } ?></td>
<td><?php the_time('Y-m-d');?></td>
<td><?php $sources = get_the_terms( $post->ID, 'sources', '', ', ', '' ); $list = ''; if ($sources) { foreach ($sources as $data) $list .= $data->name.', '; echo $list; } ?></td>
<td><?php $cats = get_the_category(', '); $list = ''; if ($cats) { foreach ($cats as $data) $list .= $data->cat_name.', '; echo $list; } ?></td>
<td><?php echo get_custom_field($prefix.'old_project_status');?></td>
<td><?php echo get_custom_field($prefix.'status_summary');?></td>
<td><?php echo get_custom_field($prefix.'forwarded_to');?></td>
<td><?php echo get_custom_field($prefix.'reason');?></td>
<td><?php echo get_custom_field($prefix.'revenue');?></td>
<td><?php echo get_custom_field($prefix.'expense');?></td>
<td><?php echo get_custom_field($prefix.'start_date');?></td>
<td><?php echo get_custom_field($prefix.'end_date');?></td>
<td><?php echo get_custom_field($prefix.'status');?></td>
<td><?php echo get_custom_field($prefix.'sales_actions');?></td>
</tr>
<?php
endwhile;
wp_reset_query();?>