-
Notifications
You must be signed in to change notification settings - Fork 0
/
archive-orbis_project.php
executable file
·100 lines (78 loc) · 2.4 KB
/
archive-orbis_project.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
<?php get_header(); ?>
<header class="section-header clearfix">
<a class="btn btn-primary pull-right" href="<?php echo esc_url( orbis_get_url_post_new() ); ?>">
<span class="glyphicon glyphicon-plus"></span> <?php _e( 'Add project', 'orbis' ); ?>
</a>
</header>
<div class="panel">
<?php get_template_part( 'templates/search_form' ); ?>
<?php if ( have_posts() ) : ?>
<div class="table-responsive">
<table class="table table-striped table-condense table-hover">
<thead>
<tr>
<th><?php _e( 'Client', 'orbis' ); ?></th>
<th><?php _e( 'Project', 'orbis' ); ?></th>
<th><?php _e( 'Time', 'orbis' ); ?></th>
<th></th>
</tr>
</thead>
<tbody>
<?php while ( have_posts() ) : the_post(); ?>
<tr id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<td>
<?php
if ( function_exists( 'orbis_project_has_principal' ) ) {
if ( orbis_project_has_principal() ) {
printf(
'<a href="%s">%s</a>',
esc_attr( orbis_project_principal_get_permalink() ),
orbis_project_principel_get_the_name()
);
}
}
?>
</td>
<td>
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
<?php if ( get_comments_number() != 0 ) : ?>
<div class="comments-number">
<span class="glyphicon glyphicon-comment"></span>
<?php comments_number( '0', '1', '%' ); ?>
</div>
<?php endif; ?>
</td>
<td class="project-time">
<?php
if ( function_exists( 'orbis_project_the_time' ) ) {
orbis_project_the_time();
}
if ( function_exists( 'orbis_project_the_logged_time' ) ) :
$classes = array();
$classes[] = orbis_project_in_time() ? 'text-success' : 'text-error';
?>
<span class="<?php echo implode( $classes, ' ' ); ?>"><?php orbis_project_the_logged_time(); ?></span>
<?php endif; ?>
</td>
<td>
<div class="actions">
<div class="nubbin">
<?php orbis_edit_post_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(); ?>