Linux puskom-ProLiant-DL385-Gen10 5.4.0-150-generic #167~18.04.1-Ubuntu SMP Wed May 24 00:51:42 UTC 2023 x86_64
/
home
/
puskom
/
mastur
/
post-grid
/
includes
/
blocks
/
post-comment-count
/
//home/puskom/mastur/post-grid/includes/blocks/post-comment-count/index.php
<?php if (!defined('ABSPATH')) exit(); class PGBlocpostCommentCount { function __construct() { add_action('init', array($this, 'register_scripts')); } // loading src files in the gutenberg editor screen function register_scripts() { //wp_register_style('editor_style', post_grid_plugin_url . 'includes/blocks/post-comment-count/index.css'); //wp_register_script('editor_script', post_grid_plugin_url . 'includes/blocks/post-comment-count/index.js', array('wp-blocks', 'wp-element')); register_block_type( post_grid_plugin_dir . 'build/blocks/post-comment-count/block.json', array( 'render_callback' => array($this, 'theHTML'), ) ); } function front_script($attributes) { } function front_style($attributes) { $icon = isset($attributes['icon']) ? $attributes['icon'] : ''; $iconOptions = isset($icon['options']) ? $icon['options'] : []; $iconLibrary = isset($iconOptions['library']) ? $iconOptions['library'] : ''; } // front-end output from the gutenberg editor function theHTML($attributes, $content, $block) { global $postGridCssY; $post_ID = isset($block->context['postId']) ? $block->context['postId'] : ''; $post_url = get_the_permalink($post_ID); $the_post = get_post($post_ID); $post_excerpt = ''; $blockId = isset($attributes['blockId']) ? $attributes['blockId'] : ''; $blockAlign = isset($attributes['align']) ? 'align' . $attributes['align'] : ''; $wrapper = isset($attributes['wrapper']) ? $attributes['wrapper'] : []; $wrapperOptions = isset($wrapper['options']) ? $wrapper['options'] : []; $wrapperTag = isset($wrapperOptions['tag']) ? $wrapperOptions['tag'] : 'div'; $wrapperClass = isset($wrapperOptions['class']) ? $wrapperOptions['class'] : ''; $commentCount = isset($attributes['commentCount']) ? $attributes['commentCount'] : []; $commentCountOptions = isset($commentCount['options']) ? $commentCount['options'] : []; $status = isset($commentCountOptions['status']) ? $commentCountOptions['status'] : 'approved'; $customLabel = isset($commentCountOptions['customLabel']) ? $commentCountOptions['customLabel'] : 'Count: %s'; $commentCountLinkTarget = isset($commentCountOptions['linkTarget']) ? $commentCountOptions['linkTarget'] : '_blank'; $commentCountCustomUrl = isset($commentCountOptions['customUrl']) ? $commentCountOptions['customUrl'] : ''; $commentCountLinkAttr = isset($commentCountOptions['linkAttr']) ? $commentCountOptions['linkAttr'] : []; $commentCountRel = isset($commentCountOptions['rel']) ? $commentCountOptions['rel'] : ''; $dateFormat = isset($commentCountOptions['dateFormat']) ? $commentCountOptions['dateFormat'] : 'dateFormat'; $commentCountLinkTo = isset($commentCountOptions['linkTo']) ? $commentCountOptions['linkTo'] : ''; $commentCountLinkToMetaKey = isset($commentCountOptions['linkToMetaKey']) ? $commentCountOptions['linkToMetaKey'] : ''; $customUrl = isset($commentCountOptions['customUrl']) ? $commentCountOptions['customUrl'] : ''; $icon = isset($attributes['icon']) ? $attributes['icon'] : ''; $iconOptions = isset($icon['options']) ? $icon['options'] : []; $iconLibrary = isset($iconOptions['library']) ? $iconOptions['library'] : ''; $iconSrcType = isset($iconOptions['srcType']) ? $iconOptions['srcType'] : ''; $iconSrc = isset($iconOptions['iconSrc']) ? $iconOptions['iconSrc'] : ''; $iconPosition = isset($iconOptions['position']) ? $iconOptions['position'] : ''; $iconClass = isset($iconOptions['class']) ? $iconOptions['class'] : ''; $prefix = isset($attributes['prefix']) ? $attributes['prefix'] : ''; $prefixOptions = isset($prefix['options']) ? $prefix['options'] : ''; $prefixText = isset($prefixOptions['text']) ? _wp_specialchars($prefixOptions['text']) : ''; $prefixClass = isset($prefixOptions['class']) ? $prefixOptions['class'] : 'prefix'; $postfix = isset($attributes['postfix']) ? $attributes['postfix'] : ''; $postfixOptions = isset($postfix['options']) ? $postfix['options'] : ''; $postfixText = isset($postfixOptions['text']) ? _wp_specialchars($postfixOptions['text']) : ''; $postfixClass = isset($postfixOptions['class']) ? $postfixOptions['class'] : 'postfix'; $blockCssY = isset($attributes['blockCssY']) ? $attributes['blockCssY'] : []; $postGridCssY[] = isset($blockCssY['items']) ? $blockCssY['items'] : []; $counts = wp_count_comments($post_ID); $countbyStatus = isset($counts->$status) ? $counts->$status : 0; $formatedcommentCount = sprintf($customLabel, $countbyStatus); if ($iconLibrary == 'fontAwesome') { wp_enqueue_style('fontawesome-icons'); } else if ($iconLibrary == 'iconFont') { wp_enqueue_style('icofont-icons'); } else if ($iconLibrary == 'bootstrap') { wp_enqueue_style('bootstrap-icons'); } $linkAttrStr = ''; if (!empty($postExcerptlinkAttr)) foreach ($postExcerptlinkAttr as $attr) { if (!empty($attr['val'])) $linkAttrStr .= esc_attr($attr['id']) . '=' . esc_attr($attr['val']) . ' '; } $linkAttrStrcommentCount = ''; if (!empty($commentCountLinkAttr)) foreach ($commentCountLinkAttr as $attr) { if (!empty($attr['val'])) $linkAttrStrcommentCount .= esc_attr($attr['id']) . '=' . esc_attr($attr['val']) . ' '; } $fontIconHtml = '<span class="' . $iconClass . ' ' . $iconSrc . '"></span>'; $linkUrl = ''; if ($commentCountLinkTo == 'postUrl') { $linkUrl = get_permalink($post_ID); } else if ($commentCountLinkTo == 'customField') { $linkUrl = get_post_meta($post_ID, $commentCountLinkToMetaKey, true); } else if ($commentCountLinkTo == 'authorUrl') { $author_id = get_post_field('post_author', $post_ID); $user = get_user_by('ID', $author_id); $linkUrl = $user->user_url; } else if ($commentCountLinkTo == 'authorLink') { $author_id = get_post_field('post_author', $post_ID); $linkUrl = get_the_author_link($author_id); } else if ($commentCountLinkTo == 'homeUrl') { $linkUrl = get_bloginfo('url'); } else if ($commentCountLinkTo == 'customUrl') { $linkUrl = $customUrl; } $obj['id'] = $post_ID; $obj['type'] = 'post'; $wrapperClass = parse_css_class($wrapperClass, $obj); $prefixText = parse_css_class($prefixText, $obj); $postfixText = parse_css_class($postfixText, $obj); ob_start(); if (!empty($wrapperTag)) : ?> <<?php echo tag_escape($wrapperTag); ?> class=" <?php echo esc_attr($blockId); ?> <?php echo esc_attr($wrapperClass); ?>"> <?php if ($iconPosition == 'beforePrefix') : ?> <?php echo wp_kses_post($fontIconHtml); ?> <?php endif; ?> <?php if ($prefixText) : ?> <span class="<?php echo esc_attr($prefixClass); ?>"> <?php echo wp_kses_post($prefixText); ?> </span> <?php endif; ?> <?php if ($iconPosition == 'afterPrefix') : ?> <?php echo wp_kses_post($fontIconHtml); ?> <?php endif; ?> <?php if (!empty($commentCountLinkTo)) : ?> <a class='commentCount' <?php echo ($linkAttrStrcommentCount); ?> target="<?php echo esc_attr($commentCountLinkTarget); ?>" rel="<?php echo esc_attr($commentCountRel); ?>" href="<?php echo (!empty($linkUrl)) ? esc_url_raw($linkUrl) : esc_url_raw($post_url); ?>"> <?php if ($iconPosition == 'beforeCommentCount') : ?> <?php echo wp_kses_post($fontIconHtml); ?> <?php endif; ?> <?php echo wp_kses_post($formatedcommentCount); ?> <?php if ($iconPosition == 'afterCommentCount') : ?> <?php echo wp_kses_post($fontIconHtml); ?> <?php endif; ?> </a> <?php else : ?> <?php if ($iconPosition == 'beforeCommentCount') : ?> <?php echo wp_kses_post($fontIconHtml); ?> <?php endif; ?> <span class='commentCount' <?php echo ($linkAttrStrcommentCount); ?>> <?php echo wp_kses_post($formatedcommentCount); ?> <?php if ($iconPosition == 'afterCommentCount') : ?> <?php echo wp_kses_post($fontIconHtml); ?> <?php endif; ?> </span> <?php endif; ?> <?php if ($iconPosition == 'beforePostfix') : ?> <?php echo wp_kses_post($fontIconHtml); ?> <?php endif; ?> <?php if ($postfixText) : ?> <span class="<?php echo $postfixClass; ?>"> <?php echo $postfixText; ?> </span> <?php endif; ?> <?php if ($iconPosition == 'afterPostfix') : ?> <?php echo wp_kses_post($fontIconHtml); ?> <?php endif; ?> </<?php echo tag_escape($wrapperTag); ?>> <?php endif; if (empty($wrapperTag)) : ?> <?php if ($iconPosition == 'beforePrefix') : ?> <?php echo wp_kses_post($fontIconHtml); ?> <?php endif; ?> <?php if ($prefixText) : ?> <span class="<?php echo esc_attr($prefixClass); ?>"> <?php echo $prefixText; ?> </span> <?php endif; ?> <?php if ($iconPosition == 'afterPrefix') : ?> <?php echo wp_kses_post($fontIconHtml); ?> <?php endif; ?> <?php if (!empty($commentCountLinkTo)) : ?> <a class='commentCount' <?php /* TO code reviewers, $linkAttrStr escaped correctly before, No need here.*/ echo ($linkAttrStrcommentCount); ?> target="<?php echo esc_attr($commentCountLinkTarget); ?>" rel="<?php echo esc_attr($commentCountRel); ?>" href="<?php echo (!empty($linkUrl)) ? esc_url_raw($linkUrl) : esc_url_raw($post_url); ?>"> <?php if ($iconPosition == 'beforeCommentCount') : ?> <?php echo wp_kses_post($fontIconHtml); ?> <?php endif; ?> <?php echo wp_kses_post($formatedcommentCount); ?>C <?php if ($iconPosition == 'afterCommentCount') : ?> <?php echo wp_kses_post($fontIconHtml); ?> <?php endif; ?> </a> <?php else : ?> <?php if ($iconPosition == 'beforeCommentCount') : ?> <?php echo wp_kses_post($fontIconHtml); ?>HELOO <?php endif; ?> <span class='commentCount'> <?php echo wp_kses_post($formatedcommentCount); ?> </span> <?php if ($iconPosition == 'afterCommentCount') : ?> <?php echo wp_kses_post($fontIconHtml); ?> <?php endif; ?> <?php endif; ?> <?php if ($iconPosition == 'beforePostfix') : ?> <?php echo wp_kses_post($fontIconHtml); ?> <?php endif; ?> <?php if ($postfixText) : ?> <span class="<?php echo $postfixClass; ?>"> <?php echo $postfixText; ?> </span> <?php endif; ?> <?php if ($iconPosition == 'afterPostfix') : ?> <?php echo wp_kses_post($fontIconHtml); ?> <?php endif; ?> <?php endif; ?> <?php return ob_get_clean(); } } $PGBlocpostCommentCount = new PGBlocpostCommentCount();