Changeset 2579160
- Timestamp:
- 08/06/2021 07:56:22 AM (5 years ago)
- Location:
- wp-cloud-server/trunk
- Files:
-
- 1 deleted
- 1 edited
-
includes/class-wp-cloud-server-query.php (deleted)
-
wp-cloud-server.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-cloud-server/trunk/wp-cloud-server.php
r2572344 r2579160 5 5 * Plugin URI: https://wpcloudserver.dev/ 6 6 * Description: Create a Powerful Cloud Server Platform from within WordPress. 7 * Version: 3.0. 77 * Version: 3.0.8 8 8 * Author: DesignedforPixels 9 9 * Author URI: https://designedforpixels.com/ … … 69 69 */ 70 70 public $shortcodes; 71 72 /**73 * WPCS Query Object.74 *75 * @var object|WPCS_Query76 * @since 1.0.077 */78 public $query;79 71 80 72 /** … … 109 101 self::$instance->dashboard = new WP_Cloud_Server_Dashboard(); 110 102 self::$instance->shortcodes = new WP_Cloud_Server_ShortCodes(); 111 self::$instance->query = new WP_Cloud_Server_Query();112 103 113 104 } … … 131 122 // Plugin version. 132 123 if ( ! defined( 'WPCS_VERSION' ) ) { 133 define( 'WPCS_VERSION', '3.0. 7' );124 define( 'WPCS_VERSION', '3.0.8' ); 134 125 } 135 126 … … 163 154 } 164 155 165 require_once WPCS_PLUGIN_DIR . 'includes/class-wp-cloud-server-query.php';166 156 require_once WPCS_PLUGIN_DIR . 'includes/functions/functions.php'; 167 157 require_once WPCS_PLUGIN_DIR . 'includes/functions/github-functions.php';
Note: See TracChangeset
for help on using the changeset viewer.