| 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 |
|
| 14 |
if ( ! defined( 'ABSPATH' ) ) { |
| 15 |
exit( 0 ); |
| 16 |
} |
| 17 |
|
| 18 |
\Automattic\Jetpack\Reprint_Export\Reprint_Exporter::maybe_init(); |
| 19 |
|