$obj = new AjaxRequest();
 $chkUser = $obj->checkUser($id_user) ? 1 : 0;
 if ($chkUser === 0) {
     echo json_encode(array('html' => $_SESSION['LANG']['error'], 'status' => 0));
     $error = 1;
 }
 $getData = $obj->infoUserLive($id_user);
 $count = count($getData);
 $followingActive = $obj->checkFollow($id_user, $_SESSION['authenticated']);
 //$dataSummary     = $obj->getTotalSummary( $id_user );
 // Count All posts
 $dataPosts = $obj->countAllPost($id_user);
 // Count All Followers
 $dataFollowers = $obj->countAllFollowers($id_user);
 // Count All Following
 $dataFollowing = $obj->countAllFollowing($id_user);
 //<---- VERIFIED
 if ($getData->type_account == 1) {
     $verified = ' <i class="fa fa-check-circle verified verified-min showTooltip" title="' . $_SESSION["LANG"]["verified"] . '" data-toggle="tooltip" data-placement="right"></i>';
 } else {
     $verified = null;
 }
 //<--- Desc User
 if ($getData->bio != '') {
     $descUser = '******' . _Function::checkTextNoLine($getData->bio) . '</p></div>';
 } else {
     $descUser = null;
 }
 /*
  *--------------------
  *       DATA