curPageURL(); } if ( isset( $attr['network'] ) ) { $raw_array = explode( ',', $attr['network'] ); $network_array = array_map( 'trim', $raw_array ); $new_array = array(); foreach ( $network_array as $network ) { $new_array[$network] = '1'; } $options['social_networks'] = $new_array; } if(isset($options['enable_http_count'])){ if ( $options['enable_http_count'] == '1' ) { $http_url_checked = 1; }else{ $http_url_checked = 0; } }else { $http_url_checked = 0; } $total_count = 0; $count = 0; foreach ( $options['social_networks'] as $key => $value ) { if ( intval( $value ) == '1' ) { $count = $this->get_count( $key, $url ); if(isset($http_url_checked) && $http_url_checked=='1'){ $url_check = parse_url($url); if($url_check['scheme'] == 'https'){ $flag=TRUE; }else{ $flag=FALSE; } if($flag == TRUE){ $url1 = APSS_Class:: get_http_url($url); $count += APSS_Class:: get_count($key, $url1); } } $total_count += $count; } } echo $total_count;