Lines:
1 to 26 of 26
<?php /** * Abstract sitemap generation state class. * * @package Jetpack * @since 4.8.0 * @author Automattic */ /* Include standard constants and librarian. */ require_once __DIR__ . '/sitemap-constants.php'; require_once __DIR__ . '/sitemap-librarian.php'; if ( defined( 'WP_DEBUG' ) && ( true === WP_DEBUG ) ) { require_once __DIR__ . '/sitemap-logger.php'; } /* class Jetpack_Sitemap_State */ /* function Jetpack_Sitemap_State::initial() – Initial state for the sitemap generator. */ /* function Jetpack_Sitemap_State::reset() – Reset the sitemap state. */ /* function Jetpack_Sitemap_State::check_in() – Store a sitemap state, and unlock it. */ /* function Jetpack_Sitemap_State::unlock() – Unlock the sitemap state. */ /* function Jetpack_Sitemap_State::check_out() – Read the stored sitemap state. Returns false if the state is locked. */ /* function Jetpack_Sitemap_State::delete() – Delete the stored state and lock. */