-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_catdir2.disp.php
executable file
·290 lines (270 loc) · 13.9 KB
/
_catdir2.disp.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
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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
<?php
/**
* This is the template that displays the posts with categories for a blog
*
* This file is not meant to be called directly.
* It is meant to be called by an include in the main.page.php template.
* To display the archive directory, you should call a stub AND pass the right parameters
* For example: /blogs/index.php?disp=posts
*
* b2evolution - {@link http://b2evolution.net/}
* Released under GNU GPL License - {@link http://b2evolution.net/about/gnu-gpl-license}
* @copyright (c)2003-2016 by Francois Planque - {@link http://fplanque.com/}
*
* @package evoskins
* @subpackage bootstrap_gallery_skin
*/
if( !defined('EVO_MAIN_INIT') ) die( 'Please, do not access this page directly.' );
global $Blog;
// Default params:
$params = array_merge( array(
'before_images' => '<div class="feature_image">',
'before_image' => '<figure class="evo_image_block">',
'before_image_legend' => '<figcaption class="evo_image_legend">',
'after_image_legend' => '</figcaption>',
'after_image' => '</figure>',
'after_images' => '</div>',
'image_class' => 'img-responsive',
'image_size' => 'original',
'image_limit' => 1,
'image_link_to' => 'single', // Can be 'original', 'single' or empty
'excerpt_image_class' => 'img-responsive',
'excerpt_image_size' => 'fit-1280x720',
'excerpt_image_limit' => 1,
'excerpt_image_link_to' => 'single',
'include_cover_images' => false, // Set to true if you want cover images to appear with teaser images.
'before_gallery' => '<div class="evo_post_gallery">',
'after_gallery' => '</div>',
'gallery_table_start' => '',
'gallery_table_end' => '',
'gallery_row_start' => '',
'gallery_row_end' => '',
'gallery_cell_start' => '<div class="evo_post_gallery__image">',
'gallery_cell_end' => '</div>',
'gallery_image_size' => 'crop-80x80',
'gallery_image_limit' => 1000,
'gallery_colls' => 5,
'gallery_order' => '', // Can be 'ASC', 'DESC', 'RAND' or empty
'excerpt_more_text' => T_('Read More').' »',
'excerpt_before_text' => '<div class="posts__info_excerpt">',
'excerpt_after_text' => '</div>',
'excerpt_before_more' => ' <span class="posts__info_excerpt_link">',
'excerpt_after_more' => '</span>',
), $params );
$column = $Skin->Change_class( 'gallery_show' );
$hover = $Skin->Change_class( 'gallery_hover_style' );
$effect = '';
$effect_home_skin = $Skin->get_setting( 'gallery_effect' );
switch ($effect_home_skin) {
case $effect_home_skin:
$effect = $effect_home_skin;
break;
}
// ------------------------------- START OF INTRO POST -------------------------------
init_MainList( $Blog->get_setting('posts_per_page') ); ?>
<ul id="post_gallery" class="posts_gallery effect-<?php echo $effect; ?>">
<?php
if( $Item = get_featured_Item( 'catdir' ) ) { // We have a intro-front post to display: ?>
<li id="<?php $Item->anchor_id() ?>" class="<?php $Item->div_classes( array( 'item_class' => 'evo_post feature_post '.$column, ) ) ?>" lang="<?php $Item->lang() ?>">
<div class="main_content_gallery">
<?php
$Item->locale_temp_switch(); // Temporarily switch to post locale (useful for multilingual blogs)
$action_links = $Item->get_edit_link( array( // Link to backoffice for editing
'before' => '',
'after' => '',
'text' => $Item->is_intro() ? get_icon( 'edit' ).' '.T_('Edit Intro') : '#',
'class' => button_class( 'text' ),
) );
if( $Item->status != 'published' ) {
$Item->format_status( array(
'template' => '<div class="evo_status evo_status__$status$ badge pull-right">$status_title$</div>',
) );
}
// Categories
$Item->categories( array(
'before' => '<div class="posts__info_cat">',
'after' => '</div>',
'include_main' => true,
'include_other' => true,
'include_external'=> true,
'link_categories' => true,
) );
$item_feature_image = $Item->get_images( array(
'before' => $params['before_images'],
'before_image' => $params['before_image'],
'before_image_legend' => $params['before_image_legend'],
'after_image_legend' => $params['after_image_legend'],
'after_image' => $params['after_image'],
'after' => $params['after_images'],
'image_class' => $params['image_class'],
'image_size' => $params['image_size'],
'limit' => $params['image_limit'],
'image_link_to' => $params['image_link_to'],
'before_gallery' => $params['before_gallery'],
'after_gallery' => $params['after_gallery'],
'gallery_table_start' => $params['gallery_table_start'],
'gallery_table_end' => $params['gallery_table_end'],
'gallery_row_start' => $params['gallery_row_start'],
'gallery_row_end' => $params['gallery_row_end'],
'gallery_cell_start' => $params['gallery_cell_start'],
'gallery_cell_end' => $params['gallery_cell_end'],
'gallery_image_size' => $params['gallery_image_size'],
'gallery_image_limit' => $params['gallery_image_limit'],
'gallery_colls' => $params['gallery_colls'],
'gallery_order' => $params['gallery_order'],
// Optionally restrict to files/images linked to specific position: 'teaser'|'teaserperm'|'teaserlink'|'aftermore'|'inline'|'cover'
'restrict_to_image_position' => 'teaser',
) );
if( empty( $item_feature_image ) )
{ // No images in this post, Display an empty block
$item_feature_image = $Item->get_permanent_link( '<div class="no_image"><img src="'.$Skin->get_url().'assets/images/blank_image.png"></div>', '#', 'album_nopic' );
}
echo $item_feature_image;
?>
<div class="posts__info">
<?php
$Item->title( array(
// 'link_type' => 'none',
'before' => '<div class="posts__info_title"><h2>',
'after' => '</h2><div class="'.button_class( 'group' ).'">'.$action_links.'</div></div>',
'nav_target' => false,
) );
// Author Avatar
$Item->author( array(
'before' => '<div class="posts__info_author">',
'after' => '</div>',
'before_user' => '',
'after_user' => '',
'link_text' => 'only_avatar', // avatar_name | avatar_login | only_avatar | name | login | nickname | firstname | lastname | fullname | preferredname
'link_class' => 'author_avatar',
'thumb_size' => 'crop-32x32',
'thumb_class' => '',
) );
// Author Name
$Item->author( array(
'before' => '<div class="posts__info_author">'.T_('By ').'',
'after' => '</div>',
'before_user' => '',
'after_user' => '',
'link_text' => 'fullname', // avatar_name | avatar_login | only_avatar | name | login | nickname | firstname | lastname | fullname | preferredname
'link_class' => 'author_avatar',
'thumb_size' => 'crop-48x48',
'thumb_class' => '',
) );
// We want to display the post time:
$Item->issue_time( array(
'before' => '<time class="posts__info_date">'.T_('On '),
'after' => '</time>',
'time_format' => 'M j, Y',
) );
if( !$Item->is_intro() ) {
// Content Excerpt
$Item->excerpt( array(
'before' => $params['excerpt_before_text'],
'after' => $params['excerpt_after_text'],
'excerpt_before_more' => $params['excerpt_before_more'],
'excerpt_after_more' => $params['excerpt_after_more'],
'excerpt_more_text' => $params['excerpt_more_text'],
) );
}
?>
</div>
<?php
locale_restore_previous(); // Restore previous locale (Blog locale)
?>
</div>
</li><!-- .evo_post -->
<?php
// ------------------------------- END OF INTRO-FRONT POST -------------------------------
}
// --------------------------------- START OF POSTS -------------------------------------
// Display message if no post:
$params_no_content = array(
'before' => '<div class="msg_nothing">',
'after' => '</div>',
'msg_empty_logged_in' => T_('Sorry, there is nothing to display...'),
// This will display if the collection has not been made private. Otherwise we will be redirected to a login screen anyways
'msg_empty_not_logged_in' => T_('This site has no public contents.')
);
// Get only root categories of this blog
$ChapterCache = & get_ChapterCache();
$chapters = $ChapterCache->get_chapters( $Blog->ID, 0, true );
// Boolean var to know when at least one post is displayed
$no_content_to_display = true;
if( ! empty( $chapters ) ) { // Display the posts with chapters
foreach( $chapters as $Chapter ) {
// Get the posts of current category
$ItemList = new ItemList2( $Blog, $Blog->get_timestamp_min( 1 ), $Blog->get_timestamp_max() );
$ItemList->set_filters( array(
'cat_array' => array( $Chapter->ID ), // Limit only by selected cat (exclude posts from child categories)
'cat_modifier' => NULL,
'unit' => 'all', // Display all items of this category, Don't limit by page
) );
$ItemList->query();
if( $ItemList->result_num_rows > 0 ) {
$no_content_to_display = false;
while( $Item = & $ItemList->get_item() )
{ // For each blog post, do everything below up to the closing curly brace "}"
// Temporarily switch to post locale (useful for multilingual blogs)
$Item->locale_temp_switch();
?>
<li id="<?php $Item->anchor_id() ?>" class="<?php $Item->div_classes( array( 'item_class' => 'evo_post '.$column, ) ); ?>" lang="<?php $Item->lang() ?>">
<div class="main_content_gallery <?php echo $hover; ?>">
<a href="<?php echo $Chapter->get_permanent_url(); ?>" class="cat_title">
<div class="cat_title_content">
<h2 class="cat_title_link"><?php echo $Chapter->get( 'name' ); ?></h2>
<span class="btn_cat">View</span>
</div>
</a>
<?php
// Display images that are linked to this post:
$item_first_image = $Item->get_images( array(
'before' => '',
'before_image' => '<div class="feature_image">',
'before_image_legend' => '',
'after_image_legend' => '',
'after_image' => '</div>',
'after' => '',
'image_size' => $Skin->get_setting( 'gallery_thumb_size' ),
'image_link_to' => 'single',
'image_desc' => '',
'limit' => 1,
'restrict_to_image_position' => 'teaser,aftermore,inline',
'get_rendered_attachments' => false,
// Sort the attachments to get firstly "Cover", then "Teaser", and "After more" as last order
'links_sql_select' => ', CASE '
.'WHEN link_position = "cover" THEN "1" '
.'WHEN link_position = "teaser" THEN "2" '
.'WHEN link_position = "aftermore" THEN "3" '
.'WHEN link_position = "inline" THEN "4" '
// .'ELSE "99999999"' // Use this line only if you want to put the other position types at the end
.'END AS position_order',
'links_sql_orderby' => 'position_order, link_order',
) );
if( empty( $item_first_image ) )
{ // No images in this post, Display an empty block
$item_first_image = $Item->get_permanent_link( '<div class="no_image"><img src="'.$Skin->get_url().'assets/images/blank_image.png"></div>', '#', 'album_nopic' );
}
else if( $item_first_image == 'plugin_render_attachments' )
{ // No images, but some attachments(e.g. videos) are rendered by plugins
$item_first_image = $Item->get_permanent_link( '<b>'.T_('Click to see contents').'</b>', '#', 'album_nopic' );
}
// Display a title
echo $item_first_image;
// Restore previous locale (Blog locale)
locale_restore_previous();
?>
</div><!-- .main_content_gallery -->
</li><!-- .evo_post -->
<?php } // $item_list
} // Chapter
} // Show Content ?>
</ul> <!-- .content_gallery -->
<?php } // ---------------------------------- END OF POSTS ------------------------------------
if( $no_content_to_display )
{ // No category and no post in this blog
echo $params_no_content['before']
.( is_logged_in() ? $params_no_content['msg_empty_logged_in'] : $params_no_content['msg_empty_not_logged_in'] )
.$params_no_content['after'];
}
?>