-
Notifications
You must be signed in to change notification settings - Fork 0
/
_SDStudio_FRONTEND_ELEMENTOR.php
483 lines (393 loc) · 16.4 KB
/
_SDStudio_FRONTEND_ELEMENTOR.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
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
<?php
/**
* REDUX - Захват опций темы
*/
$redux = get_option( 'redux_sds_options_and_settings' );
// Активация опции Elementor addons
global $enable_elementor_frontend_addons_sds_options_and_settings;
$enable_elementor_frontend_addons_sds_options_and_settings = $redux['enable_elementor_frontend_addons_sds-options-and-settings'];
// Отобразить счетчик просмотра поста
global $enable_posts_counter_sds_options_and_settings;
$enable_posts_counter_sds_options_and_settings = $redux['enable_posts_counter_sds-options-and-settings'];
// Отобразить счетчик ретинга поста
global $enable_posts_like_raiteng_sds_options_and_settings;
$enable_posts_like_raiteng_sds_options_and_settings = $redux['enable_posts_like_raiteng_sds-options-and-settings'];
// Отобразить счетчик комментариев поста
global $enable_commets_count_posts_like_raiteng_sds_options_and_settings;
$enable_commets_count_posts_like_raiteng_sds_options_and_settings = $redux['enable_commets_count_posts_like_raiteng_sds-options-and-settings'];
// Отобразить время чтения записи
global $enable_time_reading_sds_options_and_settings;
$enable_time_reading_sds_options_and_settings = $redux['enable_time_reading_sds-options-and-settings'];
/**
* FUNCTIONS
*/
// -----------------------------------------------------------------------
// ------- Post Count START
// -----------------------------------------------------------------------
if ($enable_posts_counter_sds_options_and_settings == 1){
function SDStudio_getPostViews($current_post_id){
$count_key = 'post_views_count';
$count = get_post_meta($current_post_id, $count_key, true);
if($count==''){
delete_post_meta($current_post_id, $count_key);
add_post_meta($current_post_id, $count_key, '0');
// return "0 просмотров";
return "0 ";
}
// return $count.' просмотров';
return $count.' ';
}
/**
* @return string
* Получение текущей страницы сайта
*/
// Обновляем количество просмотров
function SDStudio_setPostViews($current_post_id) {
if (!$current_post_id){
global $post;
$current_post_id = $post->ID;
}
$count_key = 'post_views_count';
$count = get_post_meta($current_post_id, $count_key, true);
if($count==''){
$count = 0;
delete_post_meta($current_post_id, $count_key);
add_post_meta($current_post_id, $count_key, '0');
}else{
$count++;
update_post_meta($current_post_id, $count_key, $count);
}
}
add_action('wp_head','SDStudio_setPostViews');
add_filter('manage_posts_columns', 'SDStudio_posts_column_views');
add_action('manage_posts_custom_column', 'SDStudio_posts_custom_column_view',5,2);
function SDStudio_posts_column_views($defaults){
// $defaults['post_views'] = __('просмотров');
$defaults['post_views'] = __('Views');
return $defaults;
}
function SDStudio_posts_custom_column_view($column_name, $id){
if($column_name === 'post_views'){
echo SDStudio_getPostViews(get_the_ID());
}
}
// -----------------------------------------------------------------------
// ------- Post Count END
// -----------------------------------------------------------------------
}
// -----------------------------------------------------------------------
// ------- Like Button START
// -----------------------------------------------------------------------
if ($enable_posts_like_raiteng_sds_options_and_settings == 1){
add_action( 'wp_enqueue_scripts', 'pt_like_it_scripts' );
function pt_like_it_scripts() {
// if( is_single() ) {
// wp_enqueue_style( 'like-it', trailingslashit( plugin_dir_url( __FILE__ ) ).'_LikeButton/like-it.css' );
if (!wp_script_is( 'jquery', 'enqueued' )) {
wp_enqueue_script( 'jquery' );// Comment this line if you theme has already loaded jQuery
}
wp_enqueue_script( 'like-it', trailingslashit( plugin_dir_url( __FILE__ ) ).'_LikeButton/like-it.js', array('jquery'), '1.0', true );
wp_localize_script( 'like-it', 'likeit', array(
'ajax_url' => admin_url( 'admin-ajax.php' )
));
// }
}
add_action( 'wp_ajax_nopriv_pt_like_it', 'pt_like_it' );
add_action( 'wp_ajax_pt_like_it', 'pt_like_it' );
function pt_like_it() {
if ( ! wp_verify_nonce( $_REQUEST['nonce'], 'pt_like_it_nonce' ) || ! isset( $_REQUEST['nonce'] ) ) {
exit( "No naughty business please" );
}
$likes = get_post_meta( $_REQUEST['post_id'], '_pt_likes', true );
$likes = ( empty( $likes ) ) ? 0 : $likes;
$new_likes = $likes + 1;
update_post_meta( $_REQUEST['post_id'], '_pt_likes', $new_likes );
if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) {
echo $new_likes;
die();
}
else {
wp_redirect( get_permalink( $_REQUEST['post_id'] ) );
exit();
}
}
// -----------------------------------------------------------------------
// ------- Like Button END
// -----------------------------------------------------------------------
}
/***
* END FUNCTIONS
*/
/**
* Elementor Динамически генерируемая сума по формуле цена * метраж
* https://developers.elementor.com/dynamic-tags/
*/
if (is_plugin_active( 'elementor/elementor.php' )) {
//Class Elementor_SDStudio_REPLACER_1_price_base extends \Elementor\Core\DynamicTags\Tag {
class Elementor_SDStudio_OptAndSet_DynData extends \Elementor\Core\DynamicTags\Tag
{
/**
* Get Name
*
* Returns the Name of the tag
*
* @return string
* @since 2.0.0
* @access public
*
*/
public function get_name()
{
return 'server-variable';
}
/**
* Get Title
*
* Returns the title of the Tag
*
* @return string
* @since 2.0.0
* @access public
*
*/
public function get_title()
{
return __('SDStudio options and settings - ДИНАМИЧЕСКИЕ ДАННЫЕ', 'elementor-pro');
}
/**
* Get Group
*
* Returns the Group of the tag
*
* @return string
* @since 2.0.0
* @access public
*
*/
public function get_group()
{
return 'request-variables';
}
/**
* Get Categories
*
* Returns an array of tag categories
*
* @return array
* @since 2.0.0
* @access public
*
*/
public function get_categories()
{
return [\Elementor\Modules\DynamicTags\Module::TEXT_CATEGORY];
}
/**
* Register Controls
*
* Registers the Dynamic tag controls
*
* @return void
* @since 2.0.0
* @access protected
*
*/
protected function _register_controls()
{
// Активация опции Elementor addons
global $enable_elementor_frontend_addons_sds_options_and_settings;
// Отобразить счетчик просмотра поста
global $enable_posts_counter_sds_options_and_settings;
// Отобразить счетчик ретинга поста
global $enable_posts_like_raiteng_sds_options_and_settings;
// Отобразить счетчик комментариев поста
global $enable_commets_count_posts_like_raiteng_sds_options_and_settings;
// Отобразить время чтения записи
global $enable_time_reading_sds_options_and_settings;
$variables = [];
if ($enable_posts_counter_sds_options_and_settings == 1){
$variables['SET_1_CounterPosts'] = '1) Счетчик просмотров страниц и записей (любого типа)';
}
if ($enable_posts_like_raiteng_sds_options_and_settings == 1){
$variables['SET_2_LikeButton'] = '2) Счетчик лайков страниц и записей (любого типа)';
}
if ($enable_commets_count_posts_like_raiteng_sds_options_and_settings == 1){
$variables['SET_3_CounterComments'] = '3) Счетчик комментариев';
}
if ($enable_time_reading_sds_options_and_settings == 1){
$variables['SET_4_ReadTime'] = '4) Время чтения';
}
if ($enable_time_reading_sds_options_and_settings == 1){
$variables['SET_5_Excrept'] = '5) Краткое описание (если не заполнено в посте, генерируется из содержания)';
}
if ($enable_time_reading_sds_options_and_settings == 1){
$variables['SET_6_BlogTitle'] = '6) "Блог"/"Архив" правильное имя';
}
$this->add_control(
'param_name',
[
'label' => __('Param Name', 'elementor-pro'),
'type' => \Elementor\Controls_Manager::SELECT,
'options' => $variables,
]
);
}
/**
* Render
*
* Prints out the value of the Dynamic tag
*
* @return void
* @since 2.0.0
* @access public
*
*/
public function render()
{
// Активация опции Elementor addons
global $enable_elementor_frontend_addons_sds_options_and_settings;
// Отобразить счетчик просмотра поста
global $enable_posts_counter_sds_options_and_settings;
// Отобразить счетчик ретинга поста
global $enable_posts_like_raiteng_sds_options_and_settings;
// Отобразить счетчик комментариев поста
global $enable_commets_count_posts_like_raiteng_sds_options_and_settings;
// Отобразить время чтения записи
global $enable_time_reading_sds_options_and_settings;
/**
* 1) Счетчик просмотров страниц и записей (любого типа)
*/
if ($enable_posts_counter_sds_options_and_settings == 1){
if ($this->get_settings('param_name') === 'SET_1_CounterPosts') {
global $post;
// Получаем ID текущего поста
$ID = $post->ID;
$count_key = 'post_views_count';
$count = get_post_meta($ID, $count_key, true);
echo $count;
}
}
/**
* 2) Счетчик лайков страниц и записей (любого типа)
*/
if ($enable_posts_like_raiteng_sds_options_and_settings == 1){
if($this->get_settings('param_name') === 'SET_2_LikeButton'){
$like_text = '';
// if ( is_single() ) {
$nonce = wp_create_nonce( 'pt_like_it_nonce' );
$link = admin_url('admin-ajax.php?action=pt_like_it&post_id='.$post->ID.'&nonce='.$nonce);
$likes = get_post_meta( get_the_ID(), '_pt_likes', true );
$likes = ( empty( $likes ) ) ? 0 : $likes;
$like_text = '
<div class="pt-like-it" style="cursor: pointer;">
<a class="like-button" href="'.$link.'" data-id="' . get_the_ID() . '" data-nonce="' . $nonce . '">' .
__( '' ) .
'</a>
<span id="like-count-'.get_the_ID().'" class="like-count">' . $likes . '</span>
</div>';
// }
// return $content . $like_text;
echo $like_text;
}
}
/**
* 3) Счетчик комментариев
*/
// global $post;
// var_dump($post->ID);
if ($enable_commets_count_posts_like_raiteng_sds_options_and_settings == 1){
if ($this->get_settings('param_name') === 'SET_3_CounterComments'){
global $post;
$commentcount = get_comments_number( $post->ID );
echo $commentcount;
}
}
//$variables['SET_4_ReadTime'] = '3) Время чтения';
/**
* 4) Время чтения
*/
if ($enable_time_reading_sds_options_and_settings == 1){
if ($this->get_settings('param_name') === 'SET_4_ReadTime'){
global $post;
$content = get_post_field( 'post_content', $post->ID );
$word_count = str_word_count( strip_tags( $content ) );
$readingtime = ceil($word_count / 200);
if ($readingtime == '0'){
$readingtime = 1;
}
if ($readingtime == 1) {
$timer = __("Minute");
} else {
$timer = __("Minutes");
}
$totalreadingtime = $readingtime .' '. $timer;
// return $totalreadingtime;
echo $totalreadingtime;
// echo $commentcount;
}
}
/**
* 5) Краткое описание (если не заполнено в посте, генерируется из содержания)
*/
if ($enable_time_reading_sds_options_and_settings == 1){
if ($this->get_settings('param_name') === 'SET_5_Excrept'){
global $post;
$ID = $post->ID;
$PostType = get_post_type( $ID );
$post = get_post($ID);
$excerpt = $post->post_excerpt;
// Если нет краткого описания (descriptions) страницы
$return_excrept = '';
if ($excerpt == ""){
remove_filter('get_the_excerpt', 'wp_trim_excerpt');
$content = get_the_content();
$content = preg_replace('/<p class="ast-the-content-more-link">(.*)<\/p>/','',$content);
$content = str_replace('…','',$content);
$content = strip_tags($content);
$content = substr($content, 0, 500);
$content = substr($content, 0, strrpos($content, ' '));
$return_excrept = $content."… ";
} else {
$return_excrept = $excerpt;
}
echo $return_excrept;
}
}
// $variables['SET_6_BlogTitle'] = '6) BLOG title';
/**
* 6) BLOG title
*/
if ($enable_time_reading_sds_options_and_settings == 1){
if ($this->get_settings('param_name') === 'SET_6_BlogTitle'){
global $post;
$ID = $post->ID;
/**
* Получаем страницу блога из опций сайта
*/
$posts_page_id = get_option( 'page_for_posts');
$posts_page = get_page( $posts_page_id);
$posts_page_title = $posts_page->post_title;
$posts_page_url = get_page_uri($posts_page_id );
// Если страница архива отобразим его title
if (is_archive()) {
echo single_cat_title();
} else {
// Если страница блога то отобразим имя страницы
echo $posts_page_title;
}
}
}
}
}
if ($enable_elementor_frontend_addons_sds_options_and_settings == 1) {
add_action('elementor/dynamic_tags/register_tags', function ($dynamic_tags) {
// In our Dynamic Tag we use a group named request-variables so we need
// To register that group as well before the tag
\Elementor\Plugin::$instance->dynamic_tags->register_group('request-variables', [
'title' => 'SDStudio options and settings'
]);
// Finally register the tag
$dynamic_tags->register_tag('Elementor_SDStudio_OptAndSet_DynData');
});
}
}