jetpack
Last commit date
3rd-party
10 years ago
_inc
10 years ago
css
10 years ago
images
10 years ago
json-endpoints
10 years ago
languages
10 years ago
modules
5 years ago
scss
10 years ago
views
10 years ago
.svnignore
10 years ago
changelog.txt
10 years ago
class.jetpack-admin.php
10 years ago
class.jetpack-autoupdate.php
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-jitm.php
10 years ago
class.jetpack-modules-list-table.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-twitter-cards.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
jetpack.php
3 years ago
json-api-config.php
10 years ago
json-endpoints.php
10 years ago
locales.php
10 years ago
readme.txt
3 years ago
require-lib.php
10 years ago
uninstall.php
10 years ago
wpml-config.xml
10 years ago
class.jetpack-jitm.php
98 lines
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * Jetpack just in time messaging through out the admin |
| 5 | * |
| 6 | * @since 3.7.0 |
| 7 | */ |
| 8 | class Jetpack_JITM { |
| 9 | |
| 10 | /** |
| 11 | * @var Jetpack_JITM |
| 12 | **/ |
| 13 | private static $instance = null; |
| 14 | |
| 15 | static function init() { |
| 16 | if ( is_null( self::$instance ) ) { |
| 17 | self::$instance = new Jetpack_JITM; |
| 18 | } |
| 19 | |
| 20 | return self::$instance; |
| 21 | } |
| 22 | |
| 23 | private function __construct() { |
| 24 | global $pagenow; |
| 25 | $jetpack_hide_jitm = Jetpack_Options::get_option( 'hide_jitm' ); |
| 26 | if ( 'media-new.php' == $pagenow && ! Jetpack::is_module_active( 'photon' ) && 'hide' != $jetpack_hide_jitm['photon'] ) { |
| 27 | add_action( 'admin_enqueue_scripts', array( $this, 'jitm_enqueue_files' ) ); |
| 28 | add_action( 'post-plupload-upload-ui', array( $this, 'photon_msg' ) ); |
| 29 | } |
| 30 | } |
| 31 | |
| 32 | /* |
| 33 | * Present Photon just in time activation msg |
| 34 | * |
| 35 | */ |
| 36 | function photon_msg() { |
| 37 | if ( current_user_can( 'jetpack_manage_modules' ) ) { ?> |
| 38 | <div class="jp-jitm"> |
| 39 | <a href="#" data-module="photon" class="dismiss"><span class="genericon genericon-close"></span></a> |
| 40 | <div class="jp-emblem"> |
| 41 | <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0" y="0" viewBox="0 0 172.9 172.9" enable-background="new 0 0 172.9 172.9" xml:space="preserve"> |
| 42 | <path d="M86.4 0C38.7 0 0 38.7 0 86.4c0 47.7 38.7 86.4 86.4 86.4s86.4-38.7 86.4-86.4C172.9 38.7 134.2 0 86.4 0zM83.1 106.6l-27.1-6.9C49 98 45.7 90.1 49.3 84l33.8-58.5V106.6zM124.9 88.9l-33.8 58.5V66.3l27.1 6.9C125.1 74.9 128.4 82.8 124.9 88.9z"/> |
| 43 | </svg> |
| 44 | </div> |
| 45 | <p> |
| 46 | <?php _e( 'Deliver super-fast images to your visitors that are automatically optimized for any device.', 'jetpack' ); ?> |
| 47 | </p> |
| 48 | <p> |
| 49 | <a href="#" data-module="photon" class="activate button button-jetpack"> |
| 50 | <?php esc_html_e( 'Activate Photon', 'jetpack' ); ?> |
| 51 | </a> |
| 52 | </p> |
| 53 | </div> |
| 54 | <?php |
| 55 | //jitm is being viewed, track it |
| 56 | $jetpack = Jetpack::init(); |
| 57 | $jetpack->stat( 'jitm', 'photon-viewed' ); |
| 58 | $jetpack->do_stats( 'server_side' ); |
| 59 | } |
| 60 | } |
| 61 | |
| 62 | /* |
| 63 | * Function to enqueue jitm css and js |
| 64 | */ |
| 65 | function jitm_enqueue_files( $hook ) { |
| 66 | |
| 67 | $wp_styles = new WP_Styles(); |
| 68 | $min = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min'; |
| 69 | wp_enqueue_style( 'jetpack-jitm-css', plugins_url( "css/jetpack-admin-jitm{$min}.css", JETPACK__PLUGIN_FILE ), false, JETPACK__VERSION . '-20121016' ); |
| 70 | $wp_styles->add_data( 'jetpack-jitm-css', 'rtl', true ); |
| 71 | |
| 72 | // Enqueue javascript to handle jitm notice events |
| 73 | wp_enqueue_script( 'jetpack-jitm-js', plugins_url( '_inc/jetpack-jitm.js', JETPACK__PLUGIN_FILE ), |
| 74 | array( 'jquery' ), JETPACK__VERSION, true ); |
| 75 | wp_localize_script( |
| 76 | 'jetpack-jitm-js', |
| 77 | 'jitmL10n', |
| 78 | array( |
| 79 | 'ajaxurl' => admin_url( 'admin-ajax.php' ), |
| 80 | 'jitm_nonce' => wp_create_nonce( 'jetpack-jitm-nonce' ), |
| 81 | 'photon_msgs' => array( |
| 82 | 'success' => __( 'Success! Photon is now actively optimizing and serving your images for free.', 'jetpack' ), |
| 83 | 'fail' => __( 'We are sorry but unfortunately Photon did not activate.', 'jetpack' ) |
| 84 | ) |
| 85 | ) |
| 86 | ); |
| 87 | } |
| 88 | } |
| 89 | /** |
| 90 | * Filter to turn off all just in time messages |
| 91 | * |
| 92 | * @since 3.7.0 |
| 93 | * |
| 94 | * @param bool true Whether to show just in time messages. |
| 95 | */ |
| 96 | if ( apply_filters( 'jetpack_just_in_time_msgs', false ) ) { |
| 97 | Jetpack_JITM::init(); |
| 98 | } |