PluginProbe
WPGet API – Connect to any external REST API / 1.7.5
WPGet API – Connect to any external REST API v1.7.5
1.9.2 1.9.3 1.9.4 1.9.5 1.9.6 1.9.7 1.9.8 1.9.9 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.1.0 2.1.1 2.1.3 2.1.4 2.1.5 2.2.0 2.2.1 2.2.10 2.2.2 2.2.3 All 97 releases
wpgetapi / wpgetapi.php

wpgetapi.php in WPGet API – Connect to any external REST API 1.7.5, at wpgetapi.php

176 lines 4.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Plugin Name: WPGetAPI
4 * Plugin URI: https://wordpress.org/plugins/wpgetapi/
5 * Description: Connect to external API's and display the API data.
6 * Author: WPGetAPI
7 * Author URI: https://wpgetapi.com/
8 * Version: 1.7.5
9 * Text Domain: wpgetapi
10 * License: GPL2 or later
11 *
12 */
13
14 // Exit if accessed directly.
15 if ( ! defined( 'ABSPATH' ) ) exit;
16
17 /**
18 * Main Class.
19 *
20 * @since 1.0.0
21 */
22 final class WpGetApi {
23
24 /**
25 * @var The one true instance
26 * @since 1.0.0
27 */
28 protected static $_instance = null;
29
30 public $version = '1.7.5';
31
32 /**
33 * Main Instance.
34 */
35 public static function instance() {
36 if ( is_null( self::$_instance ) ) {
37 self::$_instance = new self();
38 }
39 return self::$_instance;
40 }
41
42 /**
43 * Throw error on object clone.
44 *
45 * @since 1.0.0
46 * @access protected
47 * @return void
48 */
49 public function __clone() {
50 _doing_it_wrong( __FUNCTION__, __( 'Cheatin&#8217; huh?', 'wpgetapi' ), '1.0.0' );
51 }
52
53 /**
54 * Disable unserializing of the class.
55 * @since 1.0.0
56 */
57 public function __wakeup() {
58 _doing_it_wrong( __FUNCTION__, __( 'Cheatin&#8217; huh?', 'wpgetapi' ), '1.0.0' );
59 }
60
61 /**
62 *
63 * @since 1.0.0
64 */
65 public function __construct() {
66 $this->define_constants();
67 $this->hooks();
68 $this->includes();
69
70 do_action( 'wpgetapi_loaded' );
71 }
72
73 /**
74 * Define Constants.
75 * @since 1.0.0
76 */
77 private function define_constants() {
78 $this->define( 'WPGETAPIDIR',plugin_dir_path( __FILE__ ) );
79 $this->define( 'WPGETAPIURL',plugin_dir_url( __FILE__ ) );
80 $this->define( 'WPGETAPIBASENAME', plugin_basename( __FILE__ ) );
81 $this->define( 'WPGETAPIVERSION', $this->version );
82 }
83
84 /**
85 * Define hooks.
86 * @since 1.4.2
87 */
88 private function hooks() {
89 $plugin_file = WPGETAPIBASENAME;
90 add_filter( "plugin_action_links_{$plugin_file}", array( $this, 'plugin_action_links' ), 10, 4 );
91 add_filter( 'plugin_row_meta', array( $this, 'filter_plugin_row_meta' ), 10, 4 );
92 }
93
94 /**
95 * Define constant if not already set.
96 * @since 1.0.0
97 */
98 private function define( $name, $value ) {
99 if ( ! defined( $name ) ) {
100 define( $name, $value );
101 }
102 }
103
104
105 /**
106 * Include required files.
107 * @since 1.0.0
108 */
109 public function includes() {
110
111 require_once ( WPGETAPIDIR . '/lib/cmb2/init.php' );
112
113 include_once ( WPGETAPIDIR . 'includes/class-encryption.php' );
114 include_once ( WPGETAPIDIR . 'includes/class-admin-options.php' );
115
116 include_once ( WPGETAPIDIR . 'includes/functions.php' );
117 include_once ( WPGETAPIDIR . 'includes/class-enqueues.php' );
118 include_once ( WPGETAPIDIR . 'includes/class-api.php' );
119
120 include_once ( WPGETAPIDIR . 'frontend/functions.php' );
121
122 }
123
124 /**
125 * Filters the array of row meta for each plugin in the Plugins list table.
126 *
127 * @param array<int,string> $plugin_meta An array of the plugin row's meta data.
128 * @param string $plugin_file Path to the plugin file relative to the plugins directory.
129 * @return array<int,string> An array of the plugin row's meta data.
130 */
131 function filter_plugin_row_meta( array $plugin_meta, $plugin_file ) {
132 if ( 'wpgetapi/wpgetapi.php' !== $plugin_file ) {
133 return $plugin_meta;
134 }
135
136 $plugin_meta[] = sprintf(
137 '<a href="%1$s">%2$s</a>',
138 'https://wpgetapi.com/docs/?utm_campaign=Docs&utm_medium=plugin&utm_source=external',
139 esc_html( 'Docs', 'wpgetapi' )
140 );
141
142 return $plugin_meta;
143 }
144
145
146 /**
147 * Adds items to the plugin's action links on the Plugins listing screen.
148 *
149 * @param array<string,string> $actions Array of action links.
150 * @param string $plugin_file Path to the plugin file relative to the plugins directory.
151 * @param mixed[] $plugin_data An array of plugin data.
152 * @param string $context The plugin context.
153 * @return array<string,string> Array of action links.
154 */
155 function plugin_action_links( $actions, $plugin_file, $plugin_data, $context ) {
156 $new = array(
157 'setup' => sprintf(
158 '<a href="%s">%s</a>',
159 esc_url( admin_url( 'admin.php?page=wpgetapi_setup' ) ),
160 esc_html__( 'API Setup', 'wpgetapi' )
161 ),
162 );
163
164 return array_merge( $new, $actions );
165 }
166
167 }
168
169
170 /**
171 * Run the plugin.
172 */
173 function WpGetApi() {
174 return WpGetApi::instance();
175 }
176 WpGetApi();