File "social-review-showmore.php"

Full Path: /home/digimqhe/flashdigi.uk/avatar/includes/social-reviews/social-review-showmore.php
File size: 1.45 KB
MIME-type: text/x-php
Charset: utf-8

<?php 
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly

    $url = '/(http|https|ftp|ftps)\:\/\/[a-zA-Z0-9\-\.]+\.[a-zA-Z]{2,3}(\/\S*)?/';   
    if(!empty($txtLimt)){
        $ltn='';
        if($TextType == 'char'){
            $ltn = strlen($Massage);
            $firstdesc = mb_substr($Massage, 0, $TextCount);
            $totaldesc = mb_substr($Massage, $TextCount, $ltn);
        }else if($TextType = 'word'){
            $words = explode(" ", $Massage);
            $ltn = count($words);
            $firstdesc = implode(" ",array_splice($words, 0, $TextCount));
            $totaldesc = implode(" ",array_splice($words, 0));
        }           
        echo '<div class="tpgb-message tpgb-trans-linear">
                    <div class="showtext">'.wp_kses_post($firstdesc);
                    if($ltn > strlen($firstdesc) && $TextType == 'char' || ($TextType == 'word' && ($ltn > count(explode(" ", $firstdesc))) )) {
                        echo '<span class="sf-dots">'.esc_html($TextDots).'</span>
                                <div class="moreText" >'.wp_kses_post($totaldesc).'</div>
                                <a class="readbtn" aria-label="'.esc_attr($TextMore).'">'.esc_html($TextMore).'</a>';
                    }
                    echo'</div>
                </div>';
    }else{ 
        echo "<div class='tpgb-message tpgb-trans-linear'><div class='showtext'>".wp_kses_post($Massage)."</div></div>";
    }
?>