canonical-urls
4 months ago
carousel
1 day ago
comment-likes
8 months ago
comments
2 months ago
custom-post-types
1 month ago
external-media
8 months ago
google-fonts
1 month ago
gravatar
6 years ago
infinite-scroll
1 month ago
likes
1 day ago
markdown
2 months ago
memberships
1 day ago
photon-cdn
1 day ago
plugin-search
2 months ago
post-by-email
8 months ago
related-posts
1 week ago
scan
4 months ago
seo-tools
1 month ago
sharedaddy
1 month ago
shortcodes
1 week ago
shortlinks
4 weeks ago
simple-payments
8 months ago
site-icon
8 months ago
sitemaps
2 months ago
stats
7 months ago
subscriptions
1 week ago
theme-tools
1 month ago
tiled-gallery
1 month ago
verification-tools
2 months ago
videopress
1 day ago
widget-visibility
2 months ago
widgets
1 month ago
woocommerce-analytics
3 months ago
wordads
1 month ago
wpcom-tos
7 months ago
account-protection.php
3 months ago
blaze.php
8 months ago
blocks.php
8 months ago
canonical-urls.php
5 months ago
carousel.php
8 months ago
comment-likes.php
8 months ago
comments.php
4 months ago
contact-form.php
8 months ago
copy-post.php
2 months ago
custom-content-types.php
3 months ago
google-fonts.php
3 months ago
gravatar-hovercards.php
2 months ago
infinite-scroll.php
8 months ago
json-api.php
8 months ago
latex.php
2 months ago
likes.php
2 months ago
markdown.php
8 months ago
module-extras.php
8 months ago
module-headings.php
1 week ago
module-info.php
5 months ago
monitor.php
1 month ago
notes.php
1 day ago
photon-cdn.php
8 months ago
photon.php
8 months ago
plugin-search.php
1 month ago
podcast.php
1 week ago
post-by-email.php
3 months ago
post-list.php
8 months ago
protect.php
3 months ago
publicize.php
8 months ago
related-posts.php
2 months ago
search.php
8 months ago
seo-tools.php
1 month ago
sharedaddy.php
5 months ago
shortcodes.php
8 months ago
shortlinks.php
2 months ago
simple-payments.php
8 months ago
sitemaps.php
8 months ago
sso.php
1 month ago
stats.php
1 week ago
subscriptions.php
1 week ago
theme-tools.php
8 months ago
tiled-gallery.php
8 months ago
vaultpress.php
8 months ago
verification-tools.php
3 months ago
videopress.php
8 months ago
waf.php
8 months ago
widget-visibility.php
8 months ago
widgets.php
8 months ago
woocommerce-analytics.php
8 months ago
wordads.php
8 months ago
wpcom-reader.php
5 months ago
wpgroho.js
1 year ago
simple-payments.php
18 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Simple Payments module loader. |
| 4 | * |
| 5 | * This file is not a typical module; the file is required from module-extras.php and thus always required |
| 6 | * when the site is connected to WordPress.com. See $connected_tools in module-extras.php. |
| 7 | * |
| 8 | * @package automattic/jetpack |
| 9 | */ |
| 10 | |
| 11 | use Automattic\Jetpack\Paypal_Payments\Simple_Payments; |
| 12 | |
| 13 | if ( ! defined( 'ABSPATH' ) ) { |
| 14 | exit( 0 ); |
| 15 | } |
| 16 | |
| 17 | Simple_Payments::get_instance(); |
| 18 |