calypsoify
6 years ago
carousel
6 years ago
comment-likes
7 years ago
comments
6 years ago
contact-form
6 years ago
custom-css
6 years ago
custom-post-types
6 years ago
geo-location
6 years ago
google-analytics
6 years ago
infinite-scroll
6 years ago
lazy-images
6 years ago
likes
6 years ago
markdown
6 years ago
masterbar
6 years ago
memberships
6 years ago
photon
6 years ago
photon-cdn
6 years ago
plugin-search
7 years ago
post-by-email
6 years ago
protect
6 years ago
publicize
6 years ago
pwa
6 years ago
related-posts
6 years ago
scan
6 years ago
search
6 years ago
seo-tools
6 years ago
sharedaddy
6 years ago
shortcodes
6 years ago
simple-payments
6 years ago
site-icon
6 years ago
sitemaps
6 years ago
sso
6 years ago
subscriptions
6 years ago
theme-tools
6 years ago
tiled-gallery
6 years ago
verification-tools
6 years ago
videopress
6 years ago
widget-visibility
6 years ago
widgets
6 years ago
woocommerce-analytics
6 years ago
wordads
6 years ago
wpcom-block-editor
6 years ago
wpcom-tos
6 years ago
.eslintrc.js
6 years ago
after-the-deadline.php
7 years ago
carousel.php
7 years ago
comment-likes.php
6 years ago
comments.php
6 years ago
contact-form.php
7 years ago
copy-post.php
6 years ago
custom-content-types.php
6 years ago
custom-css.php
7 years ago
enhanced-distribution.php
9 years ago
geo-location.php
7 years ago
google-analytics.php
8 years ago
gravatar-hovercards.php
6 years ago
infinite-scroll.php
6 years ago
json-api.php
9 years ago
latex.php
6 years ago
lazy-images.php
6 years ago
likes.php
6 years ago
markdown.php
9 years ago
masterbar.php
7 years ago
minileven.php
6 years ago
mobile-push.php
10 years ago
module-extras.php
6 years ago
module-headings.php
6 years ago
module-info.php
6 years ago
monitor.php
6 years ago
notes.php
6 years ago
photon-cdn.php
6 years ago
photon.php
6 years ago
plugin-search.php
6 years ago
post-by-email.php
6 years ago
protect.php
6 years ago
publicize.php
6 years ago
pwa.php
6 years ago
related-posts.php
7 years ago
search.php
6 years ago
seo-tools.php
7 years ago
sharedaddy.php
6 years ago
shortcodes.php
6 years ago
shortlinks.php
7 years ago
sitemaps.php
7 years ago
sso.php
6 years ago
stats.php
6 years ago
subscriptions.php
6 years ago
theme-tools.php
6 years ago
tiled-gallery.php
7 years ago
vaultpress.php
7 years ago
verification-tools.php
7 years ago
videopress.php
7 years ago
widget-visibility.php
7 years ago
widgets.php
7 years ago
woocommerce-analytics.php
6 years ago
wordads.php
7 years ago
wpgroho.js
6 years ago
publicize.php
121 lines
| 1 | <?php // phpcs:ignore WordPress.Files.FileName.InvalidClassFileName |
| 2 | /** |
| 3 | * Module Name: Publicize |
| 4 | * Module Description: Publicize makes it easy to share your site’s posts on several social media networks automatically when you publish a new post. |
| 5 | * Sort Order: 10 |
| 6 | * Recommendation Order: 7 |
| 7 | * First Introduced: 2.0 |
| 8 | * Requires Connection: Yes |
| 9 | * Auto Activate: No |
| 10 | * Module Tags: Social, Recommended |
| 11 | * Feature: Engagement |
| 12 | * Additional Search Queries: facebook, jetpack publicize, twitter, tumblr, linkedin, social, tweet, connections, sharing, social media, automated, automated sharing, auto publish, auto tweet and like, auto tweet, facebook auto post, facebook posting |
| 13 | * |
| 14 | * @package Jetpack. |
| 15 | */ |
| 16 | |
| 17 | /** |
| 18 | * Class Jetpack_Publicize |
| 19 | */ |
| 20 | class Jetpack_Publicize { |
| 21 | |
| 22 | /** |
| 23 | * If Publicize is executing within Jetpack. |
| 24 | * |
| 25 | * @var bool |
| 26 | */ |
| 27 | public $in_jetpack = true; |
| 28 | |
| 29 | /** |
| 30 | * Jetpack_Publicize constructor. |
| 31 | */ |
| 32 | public function __construct() { |
| 33 | global $publicize_ui; |
| 34 | |
| 35 | $this->in_jetpack = ( class_exists( 'Jetpack' ) && method_exists( 'Jetpack', 'enable_module_configurable' ) ) ? true : false; |
| 36 | |
| 37 | if ( $this->in_jetpack ) { |
| 38 | Jetpack::enable_module_configurable( __FILE__ ); |
| 39 | } |
| 40 | |
| 41 | require_once dirname( __FILE__ ) . '/publicize/publicize.php'; |
| 42 | |
| 43 | if ( $this->in_jetpack ) { |
| 44 | require_once dirname( __FILE__ ) . '/publicize/publicize-jetpack.php'; |
| 45 | } else { |
| 46 | require_once dirname( dirname( __FILE__ ) ) . '/mu-plugins/keyring/keyring.php'; |
| 47 | require_once dirname( __FILE__ ) . '/publicize/publicize-wpcom.php'; |
| 48 | } |
| 49 | |
| 50 | require_once dirname( __FILE__ ) . '/publicize/ui.php'; |
| 51 | $publicize_ui = new Publicize_UI(); |
| 52 | $publicize_ui->in_jetpack = $this->in_jetpack; |
| 53 | |
| 54 | // Jetpack specific checks / hooks. |
| 55 | if ( $this->in_jetpack ) { |
| 56 | // if sharedaddy isn't active, the sharing menu hasn't been added yet. |
| 57 | $active = Jetpack::get_active_modules(); |
| 58 | if ( in_array( 'publicize', $active, true ) && ! in_array( 'sharedaddy', $active, true ) ) { |
| 59 | add_action( 'admin_menu', array( &$publicize_ui, 'sharing_menu' ) ); |
| 60 | } |
| 61 | |
| 62 | /* |
| 63 | * The Publicize Options array does not currently have UI since it is being added |
| 64 | * for a specific purpose and not part of a broader Publicize sprint. |
| 65 | * |
| 66 | * In order to pass the settings up to WordPress.com, we are updating an option to Sync will pass it up. |
| 67 | * To make it relatively easy for use, we are creating a filter that checks if the option and filter match. |
| 68 | * |
| 69 | * This only runs when a post is saved to avoid it running too much. |
| 70 | */ |
| 71 | add_action( |
| 72 | 'save_post', |
| 73 | function() { |
| 74 | $publicize_options = get_option( 'jetpack_publicize_options', array() ); |
| 75 | |
| 76 | /** |
| 77 | * Filters the options for Publicize. |
| 78 | * |
| 79 | * As of Jetpack 8.5, the array keys could be: |
| 80 | * attach_media bool If Publicize should send the image to the social media platform. Default false. |
| 81 | * |
| 82 | * @module publicize |
| 83 | * |
| 84 | * @since 8.5.0 |
| 85 | * |
| 86 | * @param array $options Array of Publicize options. |
| 87 | */ |
| 88 | $filtered = (array) apply_filters( 'jetpack_publicize_options', $publicize_options ); |
| 89 | |
| 90 | if ( $publicize_options !== $filtered ) { |
| 91 | update_option( 'jetpack_publicize_options', $filtered, false ); |
| 92 | } |
| 93 | } |
| 94 | ); |
| 95 | } |
| 96 | } |
| 97 | } |
| 98 | |
| 99 | global $publicize_ui; |
| 100 | new Jetpack_Publicize(); |
| 101 | |
| 102 | if ( ! ( defined( 'IS_WPCOM' ) && IS_WPCOM ) && ! function_exists( 'publicize_init' ) ) { |
| 103 | /** |
| 104 | * Helper for grabbing a Publicize object from the "front-end" (non-admin) of |
| 105 | * a site. Normally Publicize is only loaded in wp-admin, so there's a little |
| 106 | * set up that you might need to do if you want to use it on the front end. |
| 107 | * Just call this function and it returns a Publicize object. |
| 108 | * |
| 109 | * @return Publicize Object |
| 110 | */ |
| 111 | function publicize_init() { |
| 112 | global $publicize; |
| 113 | |
| 114 | if ( ! class_exists( 'Publicize' ) ) { |
| 115 | require_once dirname( __FILE__ ) . '/publicize/publicize.php'; |
| 116 | } |
| 117 | |
| 118 | return $publicize; |
| 119 | } |
| 120 | } |
| 121 |