-
Notifications
You must be signed in to change notification settings - Fork 5
/
archive-orbis_task.php
executable file
·107 lines (82 loc) · 2.64 KB
/
archive-orbis_task.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
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
<?php get_header(); ?>
<div class="page-header clearfix">
<h1 class="pull-left">
<?php post_type_archive_title(); ?>
<small>
<?php
printf( __( 'Overview of %1$s', 'orbis' ),
strtolower( post_type_archive_title( '', false ) )
);
?>
</small>
</h1>
<a class="btn btn-primary pull-right" href="<?php echo orbis_get_url_post_new(); ?>">
<span class="glyphicon glyphicon-plus"></span> <?php _e( 'Add task', 'orbis' ); ?>
</a>
</div>
<div class="panel">
<header>
<h3><?php _e( 'Overview', 'orbis' ); ?></h3>
</header>
<?php get_template_part( 'templates/search_form' ); ?>
<?php if ( have_posts() ) : ?>
<div class="table-responsive">
<table class="table table-striped table-bordered table-condense table-hover">
<thead>
<tr>
<th><?php _e( 'Task', 'orbis' ); ?></th>
<th><?php _e( 'Assignee', 'orbis' ); ?></th>
<th><?php _e( 'Due At', 'orbis' ); ?></th>
</tr>
</thead>
<tbody>
<?php while ( have_posts() ) : the_post(); ?>
<?php
$due_at = get_post_meta( get_the_ID(), '_orbis_task_due_at', true );
if ( empty( $due_at ) ) {
$due_at_ouput = '—';
} else {
$seconds = strtotime( $due_at );
$delta = $seconds - time();
$days = round( $delta / ( 3600 * 24 ) );
if ( $days < 0 ) {
$due_at_ouput = sprintf( __( '<span class="label label-danger">%d days</span>', 'orbis_tasks' ), $days );
} else {
$due_at_ouput = '';
}
}
?>
<tr id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<td>
<a class="title" href="<?php the_permalink(); ?>"><?php the_title(); ?></a> <br />
<div class="entry-meta">
<span class="glyphicon glyphicon-file"></span> <?php orbis_task_project(); ?> <span class="glyphicon glyphicon-user"></span> <?php orbis_task_assignee(); ?> <span class="glyphicon glyphicon-time"></span> <?php orbis_task_time(); ?>
</div>
</td>
<td>
<?php echo get_avatar( get_post_meta( get_the_ID(), '_orbis_task_assignee_id', true ), 40 ); ?>
</td>
<td>
<div class="actions">
<?php orbis_task_due_at(); ?> <?php echo $due_at_ouput; ?>
<div class="nubbin">
<?php orbis_edit_post_link(); ?>
<?php orbis_finish_task_link(); ?>
</div>
</div>
</td>
</tr>
<?php endwhile; ?>
</tbody>
</table>
</div>
<?php else : ?>
<div class="content">
<p class="alt">
<?php _e( 'No results found.', 'orbis' ); ?>
</p>
</div>
<?php endif; ?>
</div>
<?php orbis_content_nav(); ?>
<?php get_footer(); ?>