jetpack
Last commit date
3rd-party
10 years ago
_inc
10 years ago
languages
10 years ago
modules
5 years ago
views
10 years ago
.svnignore
10 years ago
class.jetpack-bbpress-json-api-compat.php
10 years ago
class.jetpack-cli.php
10 years ago
class.jetpack-client-server.php
10 years ago
class.jetpack-client.php
10 years ago
class.jetpack-data.php
10 years ago
class.jetpack-debugger.php
10 years ago
class.jetpack-error.php
10 years ago
class.jetpack-heartbeat.php
10 years ago
class.jetpack-ixr-client.php
10 years ago
class.jetpack-network-sites-list-table.php
10 years ago
class.jetpack-network.php
10 years ago
class.jetpack-options.php
10 years ago
class.jetpack-post-images.php
10 years ago
class.jetpack-signature.php
10 years ago
class.jetpack-sync.php
10 years ago
class.jetpack-user-agent.php
10 years ago
class.jetpack-xmlrpc-server.php
10 years ago
class.jetpack.php
10 years ago
class.json-api-endpoints.php
3 years ago
class.json-api.php
10 years ago
class.media-extractor.php
10 years ago
class.media-summary.php
10 years ago
class.photon.php
10 years ago
composer.json
10 years ago
functions.compat.php
10 years ago
functions.gallery.php
10 years ago
functions.opengraph.php
10 years ago
functions.photon.php
10 years ago
functions.twitter-cards.php
10 years ago
jetpack.php
3 years ago
locales.php
10 years ago
readme.txt
3 years ago
require-lib.php
10 years ago
uninstall.php
10 years ago
jetpack.php
85 lines
| 1 | <?php |
| 2 | |
| 3 | /* |
| 4 | * Plugin Name: Jetpack by WordPress.com |
| 5 | * Plugin URI: http://wordpress.org/extend/plugins/jetpack/ |
| 6 | * Description: Bring the power of the WordPress.com cloud to your self-hosted WordPress. Jetpack enables you to connect your blog to a WordPress.com account to use the powerful features normally only available to WordPress.com users. |
| 7 | * Author: Automattic |
| 8 | * Version: 2.9.6 |
| 9 | * Author URI: http://jetpack.me |
| 10 | * License: GPL2+ |
| 11 | * Text Domain: jetpack |
| 12 | * Domain Path: /languages/ |
| 13 | */ |
| 14 | |
| 15 | define( 'JETPACK__MINIMUM_WP_VERSION', '3.7' ); |
| 16 | define( 'JETPACK__VERSION', '2.9.6' ); |
| 17 | define( 'JETPACK_MASTER_USER', true ); |
| 18 | define( 'JETPACK__API_VERSION', 1 ); |
| 19 | define( 'JETPACK__PLUGIN_DIR', plugin_dir_path( __FILE__ ) ); |
| 20 | |
| 21 | defined( 'JETPACK_CLIENT__AUTH_LOCATION' ) or define( 'JETPACK_CLIENT__AUTH_LOCATION', 'header' ); |
| 22 | defined( 'JETPACK_CLIENT__HTTPS' ) or define( 'JETPACK_CLIENT__HTTPS', 'AUTO' ); |
| 23 | defined( 'JETPACK__GLOTPRESS_LOCALES_PATH' ) or define( 'JETPACK__GLOTPRESS_LOCALES_PATH', JETPACK__PLUGIN_DIR . 'locales.php' ); |
| 24 | defined( 'JETPACK__API_BASE' ) or define( 'JETPACK__API_BASE', 'https://jetpack.wordpress.com/jetpack.' ); |
| 25 | |
| 26 | // Constants for expressing human-readable intervals |
| 27 | // in their respective number of seconds. |
| 28 | // Introduced in WordPress 3.5, specified here for backward compatability. |
| 29 | defined( 'MINUTE_IN_SECONDS' ) or define( 'MINUTE_IN_SECONDS', 60 ); |
| 30 | defined( 'HOUR_IN_SECONDS' ) or define( 'HOUR_IN_SECONDS', 60 * MINUTE_IN_SECONDS ); |
| 31 | defined( 'DAY_IN_SECONDS' ) or define( 'DAY_IN_SECONDS', 24 * HOUR_IN_SECONDS ); |
| 32 | defined( 'WEEK_IN_SECONDS' ) or define( 'WEEK_IN_SECONDS', 7 * DAY_IN_SECONDS ); |
| 33 | defined( 'YEAR_IN_SECONDS' ) or define( 'YEAR_IN_SECONDS', 365 * DAY_IN_SECONDS ); |
| 34 | |
| 35 | // @todo: Abstract out the admin functions, and only include them if is_admin() |
| 36 | // @todo: Only include things like class.jetpack-sync.php if we're connected. |
| 37 | require_once( JETPACK__PLUGIN_DIR . 'class.jetpack.php' ); |
| 38 | require_once( JETPACK__PLUGIN_DIR . 'class.jetpack-network.php' ); |
| 39 | require_once( JETPACK__PLUGIN_DIR . 'class.jetpack-client.php' ); |
| 40 | require_once( JETPACK__PLUGIN_DIR . 'class.jetpack-data.php' ); |
| 41 | require_once( JETPACK__PLUGIN_DIR . 'class.jetpack-client-server.php' ); |
| 42 | require_once( JETPACK__PLUGIN_DIR . 'class.jetpack-sync.php' ); |
| 43 | require_once( JETPACK__PLUGIN_DIR . 'class.jetpack-options.php' ); |
| 44 | require_once( JETPACK__PLUGIN_DIR . 'class.jetpack-user-agent.php' ); |
| 45 | require_once( JETPACK__PLUGIN_DIR . 'class.jetpack-post-images.php' ); |
| 46 | require_once( JETPACK__PLUGIN_DIR . 'class.media-extractor.php' ); |
| 47 | require_once( JETPACK__PLUGIN_DIR . 'class.media-summary.php' ); |
| 48 | require_once( JETPACK__PLUGIN_DIR . 'class.jetpack-error.php' ); |
| 49 | require_once( JETPACK__PLUGIN_DIR . 'class.jetpack-debugger.php' ); |
| 50 | require_once( JETPACK__PLUGIN_DIR . 'class.jetpack-heartbeat.php' ); |
| 51 | require_once( JETPACK__PLUGIN_DIR . 'class.photon.php' ); |
| 52 | require_once( JETPACK__PLUGIN_DIR . 'functions.photon.php' ); |
| 53 | require_once( JETPACK__PLUGIN_DIR . 'functions.compat.php' ); |
| 54 | require_once( JETPACK__PLUGIN_DIR . 'functions.gallery.php' ); |
| 55 | require_once( JETPACK__PLUGIN_DIR . 'require-lib.php' ); |
| 56 | |
| 57 | // Play nice with http://wp-cli.org/ |
| 58 | if ( defined( 'WP_CLI' ) && WP_CLI ) { |
| 59 | require_once( JETPACK__PLUGIN_DIR . 'class.jetpack-cli.php' ); |
| 60 | } |
| 61 | |
| 62 | register_activation_hook( __FILE__, array( 'Jetpack', 'plugin_activation' ) ); |
| 63 | register_deactivation_hook( __FILE__, array( 'Jetpack', 'plugin_deactivation' ) ); |
| 64 | |
| 65 | add_action( 'init', array( 'Jetpack', 'init' ) ); |
| 66 | add_action( 'plugins_loaded', array( 'Jetpack', 'load_modules' ), 100 ); |
| 67 | add_filter( 'jetpack_static_url', array( 'Jetpack', 'staticize_subdomain' ) ); |
| 68 | |
| 69 | /** |
| 70 | * Add an easy way to photon-ize a URL that is safe to call even if Jetpack isn't active. |
| 71 | * |
| 72 | * See: http://jetpack.me/2013/07/11/photon-and-themes/ |
| 73 | */ |
| 74 | if ( Jetpack::is_module_active( 'photon' ) ) { |
| 75 | add_filter( 'jetpack_photon_url', 'jetpack_photon_url', 10, 3 ); |
| 76 | } |
| 77 | |
| 78 | /* |
| 79 | if ( is_admin() && ! Jetpack::check_identity_crisis() ) { |
| 80 | Jetpack_Sync::sync_options( __FILE__, 'db_version', 'jetpack_active_modules', 'active_plugins' ); |
| 81 | } |
| 82 | */ |
| 83 | |
| 84 | require_once( JETPACK__PLUGIN_DIR . '3rd-party/3rd-party.php' ); |
| 85 |