PATH:
home
/
lab2454c
/
fcxpro.com
/
wp-content
/
plugins
/
custom-twitter-feeds
/
inc
/
Admin
<?php /** * Class CTF_HTTP_Request * * This class with make remote request * * @since 2.0 */ namespace TwitterFeed\Admin; if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly class CTF_HTTP_Request { public function __construct() { } /** * Make the HTTP remote request * * @param string $method * @param string $url * @param array|null $data * * @since 2.0 * * @return array|WP_Error */ public static function request( $method, $url, $data = null ) { $args = array( 'headers' => array( 'Content-Type' => 'application/json', ), ); $args = array_merge( $args, $data ); if ( 'GET' === $method ) { $request = wp_remote_get( $url, $args ); } elseif ( 'DELETE' === $method ) { $args['method'] = 'DELETE'; $request = wp_remote_request( $url, $args ); } elseif ( 'PATCH' === $method ) { $args['method'] = 'PATCH'; $request = wp_remote_request( $url, $args ); } elseif ( 'PUT' === $method ) { $args['method'] = 'PUT'; $request = wp_remote_request( $url, $args ); } else { $args['method'] = 'POST'; $request = wp_remote_post( $url, $args ); } return $request; } /** * Check if WP_Error returned * * @param array|WP_Error $request * * @since 2.0 * * @return array|WP_Error */ public static function is_error( $request ) { return is_wp_error( $request ); } /** * Get the remote call status code * * @param array|WP_Error $request * * @since 2.0 * * @return array|WP_Error */ public static function status( $request ) { if ( is_wp_error( $request ) ) { return; } return wp_remote_retrieve_response_code( $request ); } /** * Get the remote call body data * * @param array|WP_Error $request * * @since 2.0 * * @return array $response */ public static function data( $request ) { $response = wp_remote_retrieve_body( $request ); return json_decode( $response ); } /** * Get Request Params * * * @since 2.0 * * @return array $request_settings */ public static function get_request_settings(){ $options = get_option( 'ctf_options' ); $consumer_key = ! empty( $options['consumer_key'] ) && $options['have_own_tokens'] ? $options['consumer_key'] : 'FPYSYWIdyUIQ76Yz5hdYo5r7y'; $consumer_secret = ! empty( $options['consumer_secret'] ) && $options['have_own_tokens'] ? $options['consumer_secret'] : 'GqPj9BPgJXjRKIGXCULJljocGPC62wN2eeMSnmZpVelWreFk9z'; $request_settings = array( 'consumer_key' => $consumer_key, 'consumer_secret' => $consumer_secret, 'access_token' => $options['access_token'], 'access_token_secret' => $options['access_token_secret'] ); return $request_settings; } }
[-] CTF_Admin_Notices.php
[edit]
[-] CTF_About_Us.php
[edit]
[-] class-install-skin.php
[edit]
[-] SB_Twitter_Cache.php
[edit]
[+]
..
[-] addon-functions.php
[edit]
[-] CTF_View.php
[edit]
[-] CTF_Cache_Handler.php
[edit]
[-] CTF_Global_Settings.php
[edit]
[-] PluginSilentUpgraderSkin.php
[edit]
[-] CTF_Support.php
[edit]
[-] CTF_Notifications.php
[edit]
[-] CTF_Response.php
[edit]
[-] CTF_oEmbeds.php
[edit]
[-] CTF_New_User.php
[edit]
[-] CTF_HTTP_Request.php
[edit]
[-] PluginSilentUpgrader.php
[edit]
[+]
Traits
[-] CTF_Upgrader.php
[edit]