Plugin Directory

Changeset 814893

Timestamp:
12/04/2013 02:31:16 PM (11 years ago)
Author:
jshreve
Message:

Jetpack 2.7 Beta 1
Add Google+ Publicize

Location:
jetpack/trunk
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • jetpack/trunk/jetpack.php

    r810918 r814893  
    66 * 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.
    77 * Author: Automattic
    8  * Version: 2.7-alpha
     8 * Version: 2.7-
    99 * Author URI: http://jetpack.me
    1010 * License: GPL2+
     
    1818defined( 'JETPACK_CLIENT__AUTH_LOCATION' ) or define( 'JETPACK_CLIENT__AUTH_LOCATION', 'header' );
    1919defined( 'JETPACK_CLIENT__HTTPS' ) or define( 'JETPACK_CLIENT__HTTPS', 'AUTO' );
    20 define( 'JETPACK__VERSION', '2.7-alpha' );
     20define( 'JETPACK__VERSION', '2.7-' );
    2121define( 'JETPACK__PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
    2222defined( 'JETPACK__GLOTPRESS_LOCALES_PATH' ) or define( 'JETPACK__GLOTPRESS_LOCALES_PATH', JETPACK__PLUGIN_DIR . 'locales.php' );
  • jetpack/trunk/modules/publicize/publicize-jetpack.php

    r799415 r814893  
    1313        add_action( 'wp_ajax_publicize_linkedin_options_page', array( $this, 'options_page_linkedin' ) );
    1414        add_action( 'wp_ajax_publicize_path_options_page', array( $this, 'options_page_path' ) );
     15
    1516
    1617        add_action( 'wp_ajax_publicize_tumblr_options_save', array( $this, 'options_save_tumblr' ) );
     
    1920        add_action( 'wp_ajax_publicize_linkedin_options_save', array( $this, 'options_save_linkedin' ) );
    2021        add_action( 'wp_ajax_publicize_path_options_save', array( $this, 'options_save_path' ) );
     22
    2123
    2224        add_action( 'load-settings_page_sharing', array( $this, 'force_user_connection' ) );
     
    292294
    293295        $services = array(
    294                 'facebook' => array(),
    295                 'twitter'  => array(),
    296                 'linkedin' => array(),
    297                 'tumblr'   => array(),
    298                 'path'     => array(),
     296                'facebook'        => array(),
     297                'twitter'         => array(),
     298                'linkedin'        => array(),
     299                'tumblr'          => array(),
     300                'path'            => array(),
     301                'google_plus'     => array(),
    299302        );
    300303
     
    614617    function options_page_linkedin() { Publicize_UI::options_page_other( 'linkedin' ); }
    615618    function options_page_path() { Publicize_UI::options_page_other( 'path' ); }
     619
    616620
    617621    function options_save_twitter() { $this->options_save_other( 'twitter' ); }
    618622    function options_save_linkedin() { $this->options_save_other( 'linkedin' ); }
    619623    function options_save_path() { $this->options_save_other( 'path' ); }
     624
    620625
    621626    function options_save_other( $service_name ) {
Note: See TracChangeset for help on using the changeset viewer.