Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 3
n/a
0 / 0
CRAP
n/a
0 / 0
1<?php
2/**
3 * Reprint export support for Pressable and WordPress.com (Atomic) sites.
4 *
5 * Not a module: it has no module headers, so it cannot be activated or
6 * deactivated. module-extras.php loads it as a connected tool, and
7 * `jetpack_tools_to_include` can exclude it entirely.
8 *
9 * The registration itself is gated on the host — see Reprint_Exporter::is_available().
10 *
11 * @package automattic/jetpack
12 */
13
14if ( ! defined( 'ABSPATH' ) ) {
15    exit( 0 );
16}
17
18\Automattic\Jetpack\Reprint_Export\Reprint_Exporter::maybe_init();