first commit

This commit is contained in:
2023-09-12 21:41:04 +02:00
commit 3361a7f053
13284 changed files with 2116755 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
-----BEGIN CERTIFICATE-----
MIIDxTCCAq2gAwIBAgIQAqxcJmoLQJuPC3nyrkYldzANBgkqhkiG9w0BAQUFADBs
MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3
d3cuZGlnaWNlcnQuY29tMSswKQYDVQQDEyJEaWdpQ2VydCBIaWdoIEFzc3VyYW5j
ZSBFViBSb290IENBMB4XDTA2MTExMDAwMDAwMFoXDTMxMTExMDAwMDAwMFowbDEL
MAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UECxMQd3d3
LmRpZ2ljZXJ0LmNvbTErMCkGA1UEAxMiRGlnaUNlcnQgSGlnaCBBc3N1cmFuY2Ug
RVYgUm9vdCBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMbM5XPm
+9S75S0tMqbf5YE/yc0lSbZxKsPVlDRnogocsF9ppkCxxLeyj9CYpKlBWTrT3JTW
PNt0OKRKzE0lgvdKpVMSOO7zSW1xkX5jtqumX8OkhPhPYlG++MXs2ziS4wblCJEM
xChBVfvLWokVfnHoNb9Ncgk9vjo4UFt3MRuNs8ckRZqnrG0AFFoEt7oT61EKmEFB
Ik5lYYeBQVCmeVyJ3hlKV9Uu5l0cUyx+mM0aBhakaHPQNAQTXKFx01p8VdteZOE3
hzBWBOURtCmAEvF5OYiiAhF8J2a3iLd48soKqDirCmTCv2ZdlYTBoSUeh10aUAsg
EsxBu24LUTi4S8sCAwEAAaNjMGEwDgYDVR0PAQH/BAQDAgGGMA8GA1UdEwEB/wQF
MAMBAf8wHQYDVR0OBBYEFLE+w2kD+L9HAdSYJhoIAu9jZCvDMB8GA1UdIwQYMBaA
FLE+w2kD+L9HAdSYJhoIAu9jZCvDMA0GCSqGSIb3DQEBBQUAA4IBAQAcGgaX3Nec
nzyIZgYIVyHbIUf4KmeqvxgydkAQV8GK83rZEWWONfqe/EW1ntlMMUu4kehDLI6z
eM7b41N5cdblIZQB2lWHmiRk9opmzN6cN82oNLFpmyPInngiK3BD41VHMWEZ71jF
hS9OMPagMRYjyOfiZRYzy78aG6A9+MpeizGLYAiJLQwGXFK3xPkKmNEVX58Svnw2
Yzi9RKR/5CYrCsSXaQ3pjOLAEFe4yHYSkVXySGnYvCoCWw9E1CAx2/S6cCZdkGCe
vEsXCS+0yx5DaMkHJ8HSXPfqIbloEpw8nL+e/IBcm2PN7EeqJSdnoDfzAIJ9VNep
+OkuE6N36B9K
-----END CERTIFICATE-----

View File

@@ -0,0 +1,179 @@
<?php
if(!defined('ABSPATH')) {
header('HTTP/1.0 403 Forbidden');
exit;
}
// Add King Composer specific CSS class by filter
add_filter( 'body_class', 'kc_add_body_class' );
function kc_add_body_class( $classes ) {
global $post;
if ( isset($post) && has_shortcode( $post->post_content, 'kc_row' ) ){
$classes[] = 'kingcomposer';
}
$classes[] = 'kc-css-system';
return $classes;
}
//define var kc_script_data
function kc_header_js_var(){
echo '<script type="text/javascript">var kc_script_data={ajax_url:"'. admin_url( 'admin-ajax.php' ) .'"}</script>';
}
add_action('wp_head', 'kc_header_js_var');
//Convert col decimal format to class
function kc_column_width_class( $width ) {
if( empty( $width ) )
return 'kc_col-sm-12';
if( strpos( $width, '%' ) !== false ){
$width = (float)$width;
if( $width < 12 )
return 'kc_col-sm-1';
else if( $width < 18 )
return 'kc_col-sm-2';
else if( $width < 22.5 )
return 'kc_col-of-5';
else if( $width < 29.5 )
return 'kc_col-sm-3';
else if( $width < 37 )
return 'kc_col-sm-4';
else if( $width < 46 )
return 'kc_col-sm-5';
else if( $width < 54.5 )
return 'kc_col-sm-6';
else if( $width < 63 )
return 'kc_col-sm-7';
else if( $width < 71.5 )
return 'kc_col-sm-8';
else if( $width < 79.5 )
return 'kc_col-sm-9';
else if( $width < 87.5 )
return 'kc_col-sm-10';
else if( $width < 95.5 )
return 'kc_col-sm-11';
else return 'kc_col-sm-12';
}
$matches = explode( '/', $width ); $width_class = ''; $n = 12; $m = 12;
if( isset( $matches[0] ) && !empty( $matches[0] ) )
$n = $matches[0];
if( isset( $matches[1] ) && !empty( $matches[1] ) )
$m = $matches[1];
if( $n == 2.4){
$width_class = 'kc_col-of-5';
}else{
if ( $n > 0 && $m > 0 ) {
$value = ceil( ($n / $m) * 12 );
if ( $value > 0 && $value <= 12 ) {
$width_class = 'kc_col-sm-'. $value;
}
}
}
return $width_class;
}
//Return file assets url
function kc_asset_url($file){
$file = KC_URL.'/assets/'.$file;
return esc_url($file);
}
//Check external link
function kc_check_image_external_link($external_link){
if (@GetImageSize($external_link)) {
return true;
} else {
return false;
}
}
/*
* Validate Color to RGBA
* Takes the user's input color value and returns it only if it's a valid color.
*/
function kc_validate_color_rgba($color) {
if ($color == "transparent") {
return $color;
}
$color = str_replace('#','', $color);
if (strlen($color) == 3) {
$color = $color.$color;
}
if (preg_match('/^[a-f0-9]{6}$/i', $color)) {
$color = '#' . $color;
}
return array('hex'=>$color, 'rgba'=> kc_hex2rgba($color));
}
/*
* Takes the color hex value and converts to a rgba.
*/
function kc_hex2rgba($color, $opacity = false) {
$default = 'rgb(0,0,0)';
//Return default if no color provided
if(empty($color))
return $default;
//Sanitize $color if "#" is provided
if ($color[0] == '#' ) {
$color = substr( $color, 1 );
}
//Check if color has 6 or 3 characters and get values
if (strlen($color) == 6) {
$hex = array( $color[0] . $color[1], $color[2] . $color[3], $color[4] . $color[5] );
} elseif ( strlen( $color ) == 3 ) {
$hex = array( $color[0] . $color[0], $color[1] . $color[1], $color[2] . $color[2] );
} else {
return $default;
}
//Convert hexadec to rgb
$rgb = array_map('hexdec', $hex);
//Check if opacity is set(rgba or rgb)
if($opacity){
if(abs($opacity) > 1)
$opacity = 1.0;
$output = 'rgba('.implode(",",$rgb).','.$opacity.')';
} else {
$output = 'rgb('.implode(",",$rgb).')';
}
//Return rgb(a) color string
return $output;
}
function kc_parse_link( $link, $default = array( 'url' => '', 'title' => '', 'target' => '' ) ){
$result = $default;
$params_link = explode('|', $link);
if( !empty($params_link) ){
$result['url'] = rawurldecode(isset($params_link[0])?$params_link[0]:'#');
$result['title'] = isset($params_link[1])?$params_link[1]:'';
$result['target'] = isset($params_link[2])?$params_link[2]:'';
}
return $result;
}
function kc_basic_layout_css(){
return '*{-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box}div{display: block}.kc-container{width:100%;max-width:1170px;margin:0 auto;padding-left:15px;padding-right:15px;box-sizing:border-box}.kc-row-container:not(.kc-container){padding-left:0;padding-right:0;width:100%;max-width:100%}.kc-elm{float: left;width: 100%;}.kc_wrap-video-bg{height:100%;left:0;overflow:hidden;pointer-events:none;position:absolute;top:0;width:100%;z-index:0}.kc_single_image img{max-width:100%}.kc-video-bg .kc_column{position:relative}.kc-infinite-loop{text-align:center;padding:50px;font-size:18px;color:red;width:100%;display:inline-block}.kc_row:not(.kc_row_inner){clear:both;display:block;width:100%}.kc-wrap-columns,.kc_row_inner{clear:both}.kc_row.kc_row_inner{width: calc(100% + 30px);}.kc_tab_content>.kc_row_inner{width:100%;margin:0}.kc_column,.kc_column_inner{min-height:1px;position:relative;padding-right:15px;padding-left:15px;width:100%;float:left}div.kc_column,div.kc_column_inner{clear:none}div[data-kc-fullheight]{min-height:100vh}html body div[data-kc-parallax=true]{background-position:50% 0;background-size:100%!important;background-repeat:no-repeat!important;background-attachment:fixed!important}div[data-kc-fullwidth]{margin-left:0!important;margin-right:0!important;position:relative;box-sizing:content-box}.kc_text_block{display:inline-block;clear:both;width:100%}@media screen and (min-width:999px){body div[data-kc-equalheight=true],body div[data-kc-equalheight=true]>.kc-container{display:-webkit-flex!important;display:-ms-flexbox!important;display:flex!important}body div[data-kc-equalheight-align=middle]>.kc-container>.kc-wrap-columns>.kc_column>.kc-col-container{display:-webkit-flex!important;display:-ms-flexbox!important;display:flex!important;align-items:center;flex-wrap:wrap;justify-content:center;height:100%}body div[data-kc-equalheight-align=bottom]>.kc-container>.kc-wrap-columns>.kc_column>.kc-col-container{display:-webkit-flex!important;display:-ms-flexbox!important;display:flex!important;align-items:flex-end;flex-wrap:wrap;justify-content:center;height:100%}body div[data-kc-fullheight=middle-content],body div[data-kc-fullheight=middle-content]>.kc-container{display:-webkit-flex;display:-ms-flexbox;display:flex;align-items:center}.kc-wrap-columns,.kc_row_inner{display:-webkit-flex;display:-ms-flexbox;display:flex}.kc_row_inner, .kc-row-container.kc-container .kc-wrap-columns{width: calc(100% + 30px)}}@media screen and (max-width: 767px){body.kc-css-system .kc_column,body.kc-css-system .kc_column_inner{width: 100%}div.kc_row{display: block}}@media screen and (max-width: 999px){.kc_col-sm-3, div.kc_col-of-5{width: 50%}}.kc_col-sm-1{width: 8.33333%}.kc_col-sm-2{width: 16.6667%}div.kc_col-of-5{width: 20%;float: left}.kc_col-sm-3{width: 25%}.kc_col-sm-4{width: 33.3333%}.kc_col-sm-5{width: 41.6667%}.kc_col-sm-6{width: 50%}.kc_col-sm-7{width: 58.3333%}.kc_col-sm-8{width: 66.6667%}.kc_col-sm-9{width: 75%}.kc_col-sm-10{width: 83.3333%}.kc_col-sm-11{width: 91.6667%}.kc_col-sm-12{width: 100%}.kc-off-notice{display:none;}';
}

View File

@@ -0,0 +1,641 @@
<?php
/**
*
* KC ajax front end
* (c) KingComposer.com
*
*/
if(!defined('KC_FILE')) {
header('HTTP/1.0 403 Forbidden');
exit;
}
class kc_ajax_front{
public function __construct(){
$ajax_events = array(
'instagrams_feed' => true,
'twitter_timeline' => true,
'facebook_recent_post' => true
);
foreach ( $ajax_events as $ajax_event => $nopriv ) {
add_action( 'wp_ajax_kc_' . $ajax_event, array( &$this, esc_attr( $ajax_event ) ) );
if ( $nopriv ) {
add_action( 'wp_ajax_nopriv_kc_' . $ajax_event, array( &$this, esc_attr( $ajax_event ) ) );
}
}
}
function facebook_recent_post(){
global $kc;
$output = $header_html = $fb_cover = '';
if( !isset( $_POST['cfg'] ) || empty( $_POST['cfg'] ) ){
wp_send_json( array(
'html' => '',
'header_data' => '',
'message' => __('Fail', 'kingcomposer')
));
exit;
}
$atts = (array) json_decode( base64_decode( $_POST['cfg'] ) );
$fb_app_id = $fb_page_id = $fb_app_secret = $number_post_show = '';
extract( $atts );
$fb_input_data = array(
'fb_page_id' => $fb_page_id,
'fb_app_id' => $kc->secrect_storage( $fb_app_id ),
'fb_app_secret' => $kc->secrect_storage( $fb_app_secret ),
'number_post_show' => $number_post_show
);
$fb_page_info = $this->get_facebook_page_feed( $fb_input_data, true );
if(isset($fb_page_info->id)){
if(isset($fb_page_info->cover->source)){
$fb_cover = 'background-image: url('. $fb_page_info->cover->source. ');';
}
$header_html .= '<div class="fb-header" style="'. esc_attr($fb_cover) .'">
<div class="overlay"></div>
<div class="fb-line-1">
<img class="img-profile" src="https://graph.facebook.com/'. $fb_page_id .'/picture?width=200" />
<span class="username">'. $fb_page_info->username .'</span>
<span class="likes">'. number_format( $fb_page_info->likes ) .' likes</span>
</div>
<div class="fb-line-2">
<a class="like_page" href="'. $fb_page_info->link .'" target="_blank"><i class="fa fa-facebook-square"></i> Like page</a>
<a class="share_page" href="http://www.facebook.com/sharer/sharer.php?u='. $fb_page_info->link .'" target="_blank"><i class="fa fa-share"></i> Share</a>
</div>
</div>';
}else{
$header_html .= __('Can not get page id', 'kingcomposer');
}
$fb_page_posts = $this->get_facebook_page_feed( $fb_input_data );
if ( isset( $open_link_new_window ) && $open_link_new_window == 'yes' ) {
$link_target = ' target="_blank"';
} else {
$link_target = '';
}
if($fb_page_posts){
foreach($fb_page_posts as $data => $value){
$fb_post_id = explode('_', $value->id);
$post_id = $fb_post_id[1];
$output .= '<li>';
if( isset( $show_image ) && $show_image == 'yes' ){
$a_end = '';
if( isset( $value->link ) ){
$output .= '<a href="'. esc_url($value->link) .'" '. $link_target .'>';
$a_end = '</a>';
}
if ( isset( $value->name ) ){
$alt = $value->name;
}
if( isset( $value->full_picture ) ){
$output .= '<img src="'. esc_url( $value->full_picture ) .'" alt="'. $alt .'">';
}
$output .= $a_end;
}
if( isset( $value->message ) ){
// remove emoji's
$_message = preg_replace( '/[\x{1F600}-\x{1F64F}]|[\x{1F300}-\x{1F5FF}]|[\x{1F680}-\x{1F6FF}]|[\x{1F1E0}-\x{1F1FF}]/u', '', $value->message );
$_message = sanitize_text_field( $_message ); // sanitize content
if(!empty($number_of_des) && $number_of_des > 0){
$_message = wp_trim_words( $_message, $number_of_des, $more = null );
}
$output .= '<div class="fb-message">'. $_message .'</div>';
}
if( !empty( $show_time ) || !empty( $show_like_count ) || !empty( $show_comment_count ) ){
$output .= '<div class="fb-post-info">';
$output .= '<a href="https://www.facebook.com/'. $fb_page_id .'/posts/'. $post_id .'" '. $link_target .'>';
if( isset( $show_like_count ) && $show_like_count == 'yes' ){
$output .= '<span class="fb-like"><i class="fa fa-thumbs-o-up"></i> '. ( isset( $value->likes->summary->total_count ) ? $value->likes->summary->total_count : 0) .'</span>';
}
if( isset( $show_comment_count ) && $show_comment_count == 'yes' ){
$output .= '<span class="fb-comment"><i class="fa fa-comment-o"></i> '. ( isset( $value->comments->summary->total_count ) ? $value->comments->summary->total_count : 0) .'</span>';
}
if( isset( $show_time ) && $show_time == 'yes' ){
$_time = strtotime( $value->created_time );
$output .= '<span class="fb-time">'. $this->time_ago( $_time ) .'</span>';
}
$output .= '</a>';
$output .= '</div>';
}
$output .= '</li>';
}
}else{
$output .= __('Warning: Fill correct facebook infomation to show new feed.', 'kingcomposer');
}
$data = array(
'html' => $output,
'header_html' => $header_html,
'message' => __('ok', 'kingcomposer')
);
wp_send_json( $data );
}
function get_facebook_page_feed( $args = array(), $only_info = false ) {
global $kc;
$defaults = array(
'fb_page_id' => 'wordpress',
'number_post_show' => 10
);
$args = wp_parse_args( $args, $defaults );
$fb_page_id = $args['fb_page_id'];
$fb_app_id = !empty( $args['fb_app_id'] ) ? $args['fb_app_id'] : '301439076655535';
$fb_app_secret = !empty( $args['fb_app_secret'] ) ? $args['fb_app_secret'] : 'afddd33dc09cb364c79e8f0a46e7dff6';
$number_post_show = $args['number_post_show'];
if ( isset( $fb_page_id ) && isset( $fb_app_id ) && isset( $fb_app_secret ) && isset( $number_post_show ) ) {
$facebook_page_info_url = 'https://graph.facebook.com/'. $fb_page_id .'/?access_token='. $fb_app_id .'|'. $fb_app_secret;
$facebook_api_url = 'https://graph.facebook.com/' . $fb_page_id . '/posts?&access_token=' . $fb_app_id . '|' . $fb_app_secret . '&fields=id,picture,full_picture,actions,type,from,message,status_type,object_id,name,caption,description,link,created_time,comments.limit(1).summary(true),likes.limit(1).summary(true)&limit=' . $number_post_show;
if($only_info == true){
$result_data = json_decode( $this->file_get_contents( $facebook_page_info_url ) );
}else{
$facebook_data = json_decode( $this->file_get_contents( $facebook_api_url ) );
if( isset( $facebook_data ) && isset( $facebook_data->data ) )
$result_data = $facebook_data->data;
}
if ( isset( $result_data ) ) {
return $result_data;
} else {
return '';
}
} else {
return '';
}
}
function instagrams_feed(){
global $kc;
$html = '';
$count = 1;
if( !isset( $_POST['cfg'] ) || empty( $_POST['cfg'] ) ){
wp_send_json( array(
'html' => '',
'header_data' => '',
'message' => __('Fail', 'kingcomposer')
));
exit;
}
$atts = (array) json_decode( base64_decode( $_POST['cfg'] ) );
$access_token = $username = '';
extract( $atts );
$access_token = $kc->secrect_storage( $access_token );
$ins_feed_data = $this->get_instagrams_feed( $username, $access_token );
if($ins_feed_data)
{
foreach ( $ins_feed_data as $key => $value )
{
switch ($count%$columns_style) {
case '1':
$li_class = 'el-start';
break;
case '0':
$li_class = 'el-end';
break;
default:
$li_class = '';
break;
}
$html .= '<li class="'. esc_attr($li_class) .' loaded">'
.'<a href="'. esc_url( $value->link ) .'" target="_blank">'
.'<img src="'. esc_url( $value->images->$image_size->url ) .'" />'
.'</a></li>';
if($count >= $number_show){
break;
}
$count++;
}
}else{
$html .= __('Warning: Fill correct instagram infomation to show new feed.', 'kingcomposer');
}
$data = array(
'html' => $html,
'message' => __('ok', 'kingcomposer')
);
wp_send_json( $data );
}
/*
* twitter_timeline
* Add this function to wp_ajax_kc_twitter_timeline hook
* Get new tweets update from user
*/
function twitter_timeline() {
global $kc;
if( !isset( $_POST['cfg'] ) || empty( $_POST['cfg'] ) ){
wp_send_json( array(
'html' => '',
'header_data' => '',
'message' => __('Fail', 'kingcomposer')
));
exit;
}
$atts = (array) json_decode( base64_decode( $_POST['cfg'] ) );
extract( $atts );
$output = $css_class = $rand_class = '';
$display_style = (!empty($display_style)) ? $display_style : 1;
$twitter_feed_data = array();
$consumer_key = !empty($consumer_key) ? $kc->secrect_storage( $consumer_key ) : 'tHWsp0yQQioooQZJfXJdGP3d4';
$consumer_secret = !empty($consumer_secret) ? $kc->secrect_storage( $consumer_secret ) : 'bl1kN9xH6nf167d0SJXnv9V5ZXuGXSShr5CeimLXaIGcUEQnsp';
$access_token = !empty($access_token) ? $kc->secrect_storage( $access_token ) : '120290116-vmLx4sPp5O3hjhRxjpl28i0APJkCpg04YVsoZyb7';
$access_token_secrect = !empty($access_token_secrect) ? $kc->secrect_storage( $access_token_secrect ) : 'B9mAhgZhQG0cspt1doF2cxDky40OEatjftRI5NCmQh1pE';
$number_tweet = (!empty( $number_tweet )) ? $number_tweet : 5;
switch ($display_style) {
case '1':
$el_in_start = '<ul>';
$el_in_end = '</ul>';
$el_item_start = '<li>';
$el_item_end = '</li>';
break;
case '2':
$el_in_start = '<div class="kc-tweet-owl owl-carousel owl-theme">';
$el_in_end = '</div>';
$el_item_start = '<div class="item">';
$el_item_end = '</div>';
break;
default:
# code...
break;
}
if (
isset( $username )
&& isset( $consumer_key )
&& isset( $consumer_secret )
&& isset( $access_token )
&& isset( $access_token_secrect )
&& isset( $number_tweet )
){
$twitter_feed_data = $this->get_tweets_feed_data(
$consumer_key,
$consumer_secret,
$access_token,
$access_token_secrect,
$number_tweet,
$username
);
$header_data = '';
if( isset( $show_follow_button ) && $show_follow_button == 'yes' && $display_style == 1 ){
$header_data .= '<div class="tweet_user user_twitter">
<img src="https://twitter.com/' . esc_attr( $username ) . '/profile_image?size=normal" class="twitter_profile_avatar"/>
<a class="kc_twitter_follow" href="https://twitter.com/intent/user?screen_name='. esc_attr( $username ) .'" target="_blank"><i class="fa fa-twitter"></i>Follow Us</a>
<span class="screen_name">@'. esc_html( $username ). '</span>
</div>';
}
if(isset($twitter_feed_data)){
$output .= $el_in_start;
foreach($twitter_feed_data as $tweet){
if( empty( $tweet['text'] ) )
continue;
$latestTweet = $tweet['text'];
//Convert plain text URLs into HTML hyperlinks
$latestTweet = preg_replace('@(https?://([-\w\.]+[-\w])+(:\d+)?(/([\w/_\.#-]*(\?\S+)?[^\.\s])?)?)@', '<a href="$1" target="_blank">$1</a>', $latestTweet);
//Convert @username twiter to link clickable
$latestTweet = preg_replace('/(^|\s)@([a-z0-9_]+)/i', '&nbsp;<a href="http://twitter.com/$2" target="_blank">@$2</a>&nbsp;', $latestTweet);
//Automatically create email link from a static text
$latestTweet = preg_replace('/(\S+@\S+\.\S+)/', '&nbsp;<a href="mailto:$1">$1</a>&nbsp;', $latestTweet);
$twitterTime = strtotime( $tweet['created_at'] );
$timeAgo = $this->time_ago( $twitterTime );
$output .= $el_item_start;
if(!empty( $latestTweet )){
$avatar = '';
$has_avatar = '';
if ( isset( $show_avatar ) && $show_avatar == 'yes' ){
//$avatar = '<span class="kc_tweet_icon"><i class="fa fa-twitter"></i></span>';
if(isset($tweet['user']['profile_image_url'])){
$avatar = '<span class="user_twitter"><img src="'. esc_url($tweet['user']['profile_image_url']) .'" /></span>';
$has_avatar = ' show_avatar';
}
}
if($display_style == 1){
$output .= '<div class="tweet_desc' . $has_avatar . '">'. $avatar. '
<span class="name">'. esc_html($tweet['user']['name']) .'</span>
<span class="screen_name">@'. esc_html($tweet['user']['screen_name']) .'</span>
<span class="description">' . $latestTweet . '</span></div>';
}else {
$output .= '<div class="tweet_desc">
<span class="description">' . $latestTweet . '</span></div>';
}
}
$output .= '<div class="twitter-footer' . $has_avatar . '">';
if( isset( $show_time ) && $show_time == 'yes' ){
$output .= '<span class="tweet_date">'. $timeAgo .'</span>';
}
if( isset( $show_reply ) && $show_reply == 'yes' ){
$output .= '<span class="tweet_reply"><a href="https://twitter.com/intent/tweet?in_reply_to='. esc_attr( $tweet['id_str'] ) .'" title="Reply"><i class="fa fa-reply"></i></a></span>';
}
if( isset( $show_retweet ) && $show_retweet == 'yes' ){
$output .= '<span class="tweet_retweet"><a href="https://twitter.com/intent/retweet?tweet_id='. esc_attr( $tweet['id_str'] ) .'" title="Retweet"><i class="fa fa-retweet"></i></a></span>';
}
$output .= '</div>';
$output .= $el_item_end;
}
$output .= $el_in_end;
if( isset( $show_follow_button ) && $show_follow_button == 'yes' && $display_style == 2 ){
$output .= '<div class="tweet_user user_twitter">
<a class="kc_twitter_follow" href="https://twitter.com/intent/user?screen_name='. esc_attr( $username ) .'" target="_blank"><i class="fa fa-twitter"></i>Follow Us</a>
</div>';
}
}
}
$data = array(
'html' => $output,
'header_data' => $header_data,
'message' => __('Ok', 'kingcomposer')
);
wp_send_json( $data );
}
/*
* get_tweets_feed_data
* @ $consumer_key
* @ $consumer_secret
* @ $access_token
* @ $access_token_secret
* @ $number_tweet
* @ $username
* Get new tweets update from user
*/
function get_tweets_feed_data( $consumer_key, $consumer_secret, $access_token, $access_token_secret, $number_tweet, $username ) {
$rd_twitter = kc_random_string( 20 );
$trans_name = 'list_tweets_'.$rd_twitter;
$twitter_cache_time = 10;
if(false === ($twitter_twitter_data = get_transient($trans_name))) {
$twitter_token = get_option('cfTwitterToken_'.$rd_twitter);
// get a new token anyways
delete_option('cfTwitterToken_'.$rd_twitter);
// getting new auth bearer only if we don't have one
if(!$twitter_token) {
// preparing credentials
$twitter_credentials = $consumer_key . ':' . $consumer_secret;
$twitter_to_send = base64_encode( $twitter_credentials );
// http post arguments
$twitter_args = array(
'method' => 'POST',
'httpversion' => '1.1',
'blocking' => true,
'headers' => array(
'Authorization' => 'Basic ' . $twitter_to_send,
'Content-Type' => 'application/x-www-form-urlencoded;charset=UTF-8'
),
'body' => array( 'grant_type' => 'client_credentials' )
);
add_filter('https_ssl_verify', '__return_false');
$twitter_response = wp_remote_post('https://api.twitter.com/oauth2/token', $twitter_args);
$twitter_keys = json_decode(wp_remote_retrieve_body($twitter_response));
if($twitter_keys) {
// saving token to wp_options table
update_option('cfTwitterToken_'.$rd_twitter, $twitter_keys->access_token);
$twitter_token = $twitter_keys->access_token;
}
}
// we have bearer token wether we obtained it from API or from options
$twitter_args = array(
'httpversion' => '1.1',
'blocking' => true,
'headers' => array(
'Authorization' => "Bearer ".$twitter_token
)
);
add_filter('https_ssl_verify', '__return_false');
$twitter_api_url = 'https://api.twitter.com/1.1/statuses/user_timeline.json?screen_name='.$username.'&count='.$number_tweet;
$twitter_response = wp_remote_get($twitter_api_url, $twitter_args);
set_transient($trans_name, wp_remote_retrieve_body($twitter_response), 60 * $twitter_cache_time);
}
@$twitter_feed_data = json_decode(get_transient($trans_name), true);
return $twitter_feed_data;
}
function time_ago($time) {
$periods = array(
__( 'second', 'kingcomposer' ),
__( 'minute', 'kingcomposer' ),
__( 'hour', 'kingcomposer' ),
__( 'day', 'kingcomposer' ),
__( 'week', 'kingcomposer' ),
__( 'month', 'kingcomposer' ),
__( 'year', 'kingcomposer' ),
__( 'decade', 'kingcomposer' )
);
$periods_plural = array(
__( 'seconds', 'kingcomposer' ),
__( 'minutes', 'kingcomposer' ),
__( 'hours', 'kingcomposer' ),
__( 'days', 'kingcomposer' ),
__( 'weeks', 'kingcomposer' ),
__( 'months', 'kingcomposer' ),
__( 'years', 'kingcomposer' ),
__( 'decades', 'kingcomposer' )
);
$lengths = array( '60', '60', '24', '7', '4.35', '12', '10' );
$now = time();
$difference = $now - $time;
$tense = __( 'ago', 'kingcomposer' );
for( $j = 0; $difference >= $lengths[$j] && $j < count( $lengths )-1; $j++ ) {
$difference /= $lengths[$j];
}
$difference = round( $difference );
if( $difference != 1 ) {
$periods[$j] = $periods_plural[$j];
}
return sprintf('%s %s %s', $difference, $periods[$j], $tense);
}
function get_instagrams_feed( $username, $access_token ) {
$ins_url = 'https://api.instagram.com/v1/users/self/?access_token=' . $access_token;
$ins_ch = curl_init();
curl_setopt($ins_ch, CURLOPT_URL, $ins_url);
curl_setopt($ins_ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ins_ch, CURLOPT_TIMEOUT, 20);
curl_setopt($ins_ch, CURLOPT_SSL_VERIFYPEER, true);
curl_setopt($ins_ch, CURLOPT_SSL_VERIFYHOST, 2);
curl_setopt($ins_ch, CURLOPT_CAINFO, KC_PATH . KDS . "includes/frontend/helpers/DigiCertHighAssuranceEVRootCA.cer");
curl_setopt($ins_ch, CURLOPT_FOLLOWLOCATION, 3);
$ins_json_data = curl_exec($ins_ch);
$ins_json_data = json_decode($ins_json_data);
if (isset($ins_json_data->data->username) && ($ins_json_data->data->username == strtolower($username))) {
$ins_user_id = $ins_json_data->data->id;
} else {
$ins_user_id = 0;
}
if ($ins_user_id) {
$ins_api_url = 'https://api.instagram.com/v1/users/' . $ins_user_id . '/media/recent?access_token=' . $access_token;
$ins_ch = curl_init();
curl_setopt($ins_ch, CURLOPT_URL, $ins_api_url);
curl_setopt($ins_ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ins_ch, CURLOPT_TIMEOUT, 20);
curl_setopt($ins_ch, CURLOPT_SSL_VERIFYPEER, true);
curl_setopt($ins_ch, CURLOPT_SSL_VERIFYHOST, 2);
curl_setopt($ins_ch, CURLOPT_CAINFO, KC_PATH. KDS . "includes/frontend/helpers/DigiCertHighAssuranceEVRootCA.cer");
curl_setopt($ins_ch, CURLOPT_FOLLOWLOCATION, 3);
$ins_data = curl_exec($ins_ch);
curl_close($ins_ch);
$ins_data = json_decode($ins_data);
return $ins_data->data;
} else {
return 0;
}
}
function get_instagram_user_id($username, $access_token) {
$ins_url = 'https://api.instagram.com/v1/users/self/?access_token=' . $access_token;
$ins_ch = curl_init();
curl_setopt($ins_ch, CURLOPT_URL, $ins_url);
curl_setopt($ins_ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ins_ch, CURLOPT_TIMEOUT, 20);
curl_setopt($ins_ch, CURLOPT_SSL_VERIFYPEER, true);
curl_setopt($ins_ch, CURLOPT_SSL_VERIFYHOST, 2);
curl_setopt($ins_ch, CURLOPT_CAINFO, KC_PATH. DS . "includes/frontend/helpers/DigiCertHighAssuranceEVRootCA.cer");
curl_setopt($ins_ch, CURLOPT_FOLLOWLOCATION, 3);
$ins_json_data = curl_exec($ins_ch);
$ins_json_data = json_decode($ins_json_data);
if (isset($ins_json_data->data->username) && ($ins_json_data->data->username == $username)) {
return $ins_json_data->data->id;
} else {
return 0;
}
}
function file_get_contents( $url ){
$url_ch = curl_init();
curl_setopt( $url_ch, CURLOPT_URL, $url );
curl_setopt( $url_ch, CURLOPT_RETURNTRANSFER, 1 );
curl_setopt( $url_ch, CURLOPT_TIMEOUT, 20 );
curl_setopt( $url_ch, CURLOPT_SSL_VERIFYPEER, false );
curl_setopt( $url_ch, CURLOPT_SSL_VERIFYHOST, false );
$_return = curl_exec( $url_ch );
curl_close( $url_ch );
return $_return;
}
}
#Start kc_ajax_front
new kc_ajax_front();

View File

@@ -0,0 +1,245 @@
<?php
/*
* Remove __empty__ code value
*/
function kc_remove_empty_code( $atts ){
$atts_tmp = array();
foreach( $atts as $key => $value ){
if('__empty__' === $value){
$atts_tmp[$key] = '';
}else{
$atts_tmp[$key] = $value;
}
}
return $atts_tmp;
}
//Row filter
function kc_row_filter( $atts ){
if( isset( $atts['video_bg'] ) && $atts['video_bg'] == 'yes' ){
wp_register_script('kc-youtube-iframe-api', 'https://www.youtube.com/iframe_api', null, KC_VERSION, true );
wp_enqueue_script('kc-youtube-iframe-api');
}
return $atts;
}
//Row filter
function kc_column_filter( $atts ){
if( isset( $atts['video_bg'] ) && $atts['video_bg'] == 'yes' ){
wp_register_script('kc-youtube-iframe-api', 'https://www.youtube.com/iframe_api', null, KC_VERSION, true );
wp_enqueue_script('kc-youtube-iframe-api');
}
return $atts;
}
function kc_row_inner_filter( $atts ){
if( isset( $atts['video_bg'] ) && $atts['video_bg'] == 'yes' ){
wp_register_script('kc-youtube-iframe-api', 'https://www.youtube.com/iframe_api', null, KC_VERSION, true );
wp_enqueue_script('kc-youtube-iframe-api');
}
return $atts;
}
//Tab filter
function kc_tabs_filter( $atts = array() ){
if( isset( $atts['type'] ) && $atts['type'] === 'slider_tabs' ){
wp_enqueue_script( 'owl-carousel' );
wp_enqueue_style( 'owl-theme' );
wp_enqueue_style( 'owl-carousel' );
}
return $atts;
}
function kc_tab_filter( $atts = array() ){
// Do your code here
global $kc_tab_id;
if( !isset( $kc_tab_id ) || empty( $kc_tab_id ) )
$kc_tab_id = array();
$i = 1; $_title = sanitize_title( !empty( $atts['title'] ) ? $atts['title'] : 'kc-tab' );
while( in_array( $_title, $kc_tab_id ) )
{
$i++;
$_title = sanitize_title( !empty( $atts['title'] ) ? $atts['title'] : 'kc-tab' ).$i;
}
array_push( $kc_tab_id, $_title );
$atts['tab_id'] = $_title;
return $atts;
}
function kc_box_filter( $atts = array() ){
global $kc_front;
if( isset( $atts['css_code'] ) && !empty( $atts['css_code'] ) ){
$kc_front->add_header_css( $atts['css_code'] );
}
return $atts;
}
function kc_video_play_filter( $atts = array() ){
if( isset( $atts['video_link'] ) && !empty( $atts['video_link'] ) ){
if(preg_match('/youtu\.be/i', $atts['video_link']) || preg_match('/youtube\.com\/watch/i', $atts['video_link'])){
$atts['check_video'] = 'true';
wp_enqueue_script('kc-youtube-api');
}else if( (preg_match('/vimeo\.com/i', $atts['video_link'] )) ){
$atts['check_video'] = 'true';
wp_enqueue_script('kc-vimeo-api');
}else{
$atts['check_video'] = 'false';
}
}else{
$atts['check_video'] = 'false';
}
if( isset( $atts['video_upload'] ) && !empty( $atts['video_upload'] ) ){
$atts['check_video'] = 'true';
}
wp_enqueue_script( 'kc-video-play' );
return $atts;
}
function kc_counter_box_filter( $atts = array() ){
wp_enqueue_script('waypoints');
wp_enqueue_script('counter-up');
return $atts;
}
function kc_carousel_post_filter( $atts = array() ){
$atts = kc_remove_empty_code( $atts );
extract( $atts );
wp_enqueue_script( 'owl-carousel' );
wp_enqueue_style( 'owl-theme' );
wp_enqueue_style( 'owl-carousel' );
return $atts;
}
/*
* Pie chart shortcode custom css
*/
function kc_pie_chart_filter( $atts = array() ){
global $kc_front;
wp_enqueue_script( 'easypie-chart' );
return $atts;
}
function kc_twitter_feed_filter( $atts = array() ){
global $kc_front;
$atts = kc_remove_empty_code( $atts );
extract( $atts );
if( isset( $display_style ) && '2' === $display_style ){
wp_enqueue_script( 'owl-carousel' );
wp_enqueue_style( 'owl-theme' );
wp_enqueue_style( 'owl-carousel' );
}
return $atts;
}
function kc_carousel_images_filter( $atts = array() ){
$atts = kc_remove_empty_code( $atts );
extract( $atts );
wp_enqueue_script( 'owl-carousel' );
wp_enqueue_style( 'owl-theme' );
wp_enqueue_style( 'owl-carousel' );
if( isset( $onclick ) && $onclick == 'lightbox' ){
wp_enqueue_script( 'prettyPhoto' );
wp_enqueue_style( 'prettyPhoto' );
}
return $atts;
}
function kc_image_gallery_filter( $atts = array() ){
global $kc_front;
$atts = kc_remove_empty_code( $atts );
extract( $atts );
wp_enqueue_script( 'masonry' );
if( isset( $click_action ) && 'lightbox' === $click_action ){
wp_enqueue_script( 'prettyPhoto' );
wp_enqueue_style( 'prettyPhoto' );
}
return $atts;
}
function kc_blog_posts_filter( $atts = array() ) {
if ( isset( $atts['layout'] ) && ($atts['layout'] == '1' || $atts['layout'] == '4') ) {
wp_enqueue_script( 'owl-carousel' );
wp_enqueue_style( 'owl-theme' );
wp_enqueue_style( 'owl-carousel' );
}
wp_enqueue_script( 'masonry' );
return $atts;
}
function kc_feature_box_filter( $atts = array() ){
if( isset( $atts['layout'] ) && $atts['layout'] == '2' ){
wp_enqueue_script( 'owl-carousel' );
wp_enqueue_style( 'owl-theme' );
wp_enqueue_style( 'owl-carousel' );
}
return $atts;
}