File: //proc/thread-self/cwd/wp-content/plugins/astra-sites/inc/classes/class-astra-sites-page.php
<?php
/**
* Astra Sites Page
*
* @since 1.0.6
* @package Astra Sites
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
if ( ! class_exists( 'Astra_Sites_Page' ) ) {
/**
* Astra Admin Settings
*/
class Astra_Sites_Page {
/**
* View all actions
*
* @since 1.0.6
* @var array $view_actions
*/
public $view_actions = array();
/**
* Member Variable
*
* @var instance
*/
private static $instance;
/**
* Initiator
*
* @since 1.3.0
*/
public static function get_instance() {
if ( ! isset( self::$instance ) ) {
self::$instance = new self();
}
return self::$instance;
}
/**
* Constructor
*
* @since 1.3.0
*/
public function __construct() {
if ( ! is_admin() ) {
return;
}
add_action( 'after_setup_theme', array( $this, 'init_admin_settings' ), 99 );
add_action( 'wp_ajax_astra-sites-change-page-builder', array( $this, 'save_page_builder_on_ajax' ) );
add_action( 'admin_init', array( $this, 'save_page_builder_on_submit' ) );
add_action( 'admin_notices', array( $this, 'getting_started' ) );
add_action( 'admin_body_class', array( $this, 'admin_body_class' ) );
}
/**
* Admin Body Classes
*
* @since 2.0.0
* @param string $classes Space separated class string.
*/
public function admin_body_class( $classes = '' ) {
$is_page_builder_screen = isset( $_GET['change-page-builder'] ) ? true : false; // phpcs:ignore WordPress.Security.NonceVerification.Recommended
$current_page_builder = self::get_instance()->get_setting( 'page_builder' );
if ( $is_page_builder_screen || empty( $current_page_builder ) ) {
return $classes . ' astra-sites-change-page-builder ';
}
return $classes;
}
/**
* Admin notice
*
* @since 1.3.5
*
* @return void
*/
public function getting_started() {
$current_screen = get_current_screen();
// Bail if not on Astra Sites screen.
if ( ! is_object( $current_screen ) && null === $current_screen ) {
return;
}
if ( 'appearance_page_starter-templates' === $current_screen->base ) {
$manual_sync = get_site_option( 'astra-sites-manual-sync-complete', 'no' );
if ( 'yes' === $manual_sync ) {
$status = get_site_option( 'astra-sites-batch-is-complete', 'no' );
if ( 'yes' === $status ) {
?>
<div class="astra-sites-sync-library-message success astra-sites-notice notice notice-success is-dismissible">
<p><?php Astra_Sites::get_instance()->get_sync_complete_message( true ); ?></p>
</div>
<?php
}
}
}
if ( 'plugins' === $current_screen->base ) {
$processed = get_option( '_astra_sites_gettings_started', 'no' );
$product_name = Astra_Sites_White_Label::get_instance()->get_white_label_name( 'Astra' );
if ( 'yes' === $processed ) {
return;
}
$arguments = array(
'page' => 'starter-templates',
);
$page_builder = self::get_instance()->get_setting( 'page_builder' );
if ( empty( $page_builder ) ) {
$arguments['change-page-builder'] = 'yes';
}
$url = add_query_arg( $arguments, admin_url( 'themes.php' ) );
?>
<div class="notice notice-info is-dismissible astra-sites-notice astra-sites-getting-started-notice">
<?php /* translators: %1$s is the admin page URL, %2$s is product name. */ ?>
<p><?php printf( __( 'Thank you for choosing %1$s! Check the library of <a class="astra-sites-getting-started-btn" href="%2$s">ready starter templates here ยป</a>', 'astra-sites' ), esc_html( $product_name ), esc_url( $url ) ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?></p>
</div>
<?php
}
}
/**
* Save Page Builder
*
* @since 1.4.0 The `$page_builder_slug` was added.
*
* @param string $page_builder_slug Page Builder Slug.
* @return mixed
*/
public function save_page_builder_on_submit( $page_builder_slug = '' ) {
// Only admins can save settings.
if ( ! defined( 'WP_CLI' ) && ! current_user_can( 'manage_options' ) ) {
return;
}
if ( ! defined( 'WP_CLI' ) && ( ! isset( $_REQUEST['astra-sites-page-builder'] ) || ! wp_verify_nonce( $_REQUEST['astra-sites-page-builder'], 'astra-sites-welcome-screen' ) ) ) {
return;
}
// Stored Settings.
$stored_data = $this->get_settings();
$page_builder = isset( $_REQUEST['page_builder'] ) ? sanitize_key( $_REQUEST['page_builder'] ) : sanitize_key( $page_builder_slug );
if ( ! empty( $page_builder ) ) {
// New settings.
$new_data = array(
'page_builder' => $page_builder,
);
// Merge settings.
$data = wp_parse_args( $new_data, $stored_data );
// Update settings.
update_option( 'astra_sites_settings', $data, 'no' );
}
if ( ! defined( 'WP_CLI' ) ) {
wp_safe_redirect( admin_url( '/themes.php?page=starter-templates' ) );
exit();
}
}
/**
* Save Page Builder
*
* @return void
*/
public function save_page_builder_on_ajax() {
// Only admins can save settings.
if ( ! current_user_can( 'manage_options' ) ) {
wp_send_json_error();
}
// Stored Settings.
$stored_data = $this->get_settings();
// New settings.
$new_data = array(
'page_builder' => ( isset( $_REQUEST['page_builder'] ) ) ? sanitize_key( $_REQUEST['page_builder'] ) : '', // phpcs:ignore WordPress.Security.NonceVerification.Recommended
);
// Merge settings.
$data = wp_parse_args( $new_data, $stored_data );
// Update settings.
update_option( 'astra_sites_settings', $data, 'no' );
$sites = $this->get_sites_by_page_builder( $new_data['page_builder'] );
wp_send_json_success( $sites );
}
/**
* Get Page Builder Sites
*
* @since 2.0.0
*
* @param string $default_page_builder default page builder slug.
* @return array page builder sites.
*/
public function get_sites_by_page_builder( $default_page_builder = '' ) {
$sites_and_pages = Astra_Sites::get_instance()->get_all_sites();
$current_page_builder_sites = array();
if ( ! empty( $sites_and_pages ) ) {
$page_builder_keys = wp_list_pluck( $sites_and_pages, 'astra-site-page-builder' );
foreach ( $page_builder_keys as $site_id => $page_builder ) {
if ( $default_page_builder === $page_builder ) {
$current_page_builder_sites[ $site_id ] = $sites_and_pages[ $site_id ];
}
}
}
return $current_page_builder_sites;
}
/**
* Get single setting value
*
* @param string $key Setting key.
* @param mixed $defaults Setting value.
* @return mixed Stored setting value.
*/
public function get_setting( $key = '', $defaults = '' ) {
$settings = $this->get_settings();
if ( empty( $settings ) ) {
return $defaults;
}
if ( array_key_exists( $key, $settings ) ) {
return $settings[ $key ];
}
return $defaults;
}
/**
* Get Settings
*
* @return array Stored settings.
*/
public function get_settings() {
$defaults = array(
'page_builder' => '',
);
$stored_data = get_option( 'astra_sites_settings', $defaults );
return wp_parse_args( $stored_data, $defaults );
}
/**
* Update Settings
*
* @param array $args Arguments.
*/
public function update_settings( $args = array() ) {
$stored_data = get_option( 'astra_sites_settings', array() );
$new_data = wp_parse_args( $args, $stored_data );
update_option( 'astra_sites_settings', $new_data, 'no' );
}
/**
* Admin settings init
*/
public function init_admin_settings() {
add_action( 'admin_menu', array( $this, 'add_admin_menu' ) );
add_action( 'admin_notices', array( $this, 'notices' ) );
add_action( 'astra_sites_menu_general_action', array( $this, 'general_page' ) );
add_action( 'astra_pages_menu_general_action', array( $this, 'general_page_for_astra_pages' ) );
}
/**
* Admin notice
*
* @since 1.2.8
*/
public function notices() {
$current_screen = get_current_screen();
// Bail if not on Astra Sites screen.
if ( ! is_object( $current_screen ) && null === $current_screen ) {
return;
}
if ( 'appearance_page_starter-templates' !== $current_screen->id ) {
return;
}
if ( ! class_exists( 'XMLReader' ) ) {
?>
<div class="notice astra-sites-xml-notice astra-sites-notice notice-error">
<p><b><?php esc_html_e( 'Required XMLReader PHP extension is missing on your server!', 'astra-sites' ); ?></b></p>
<?php /* translators: %s is the white label name. */ ?>
<p><?php printf( esc_html__( '%s import requires XMLReader extension to be installed. Please contact your web hosting provider and ask them to install and activate the XMLReader PHP extension.', 'astra-sites' ), esc_html( ASTRA_SITES_NAME ) ); ?></p>
</div>
<?php
}
}
/**
* Init Nav Menu
*
* @param mixed $action Action name.
* @since 1.0.6
*/
public function init_nav_menu( $action = '' ) {
if ( '' !== $action ) {
$this->render_tab_menu( $action );
}
}
/**
* Render tab menu
*
* @param mixed $action Action name.
* @since 1.0.6
*/
public function render_tab_menu( $action = '' ) {
?>
<div id="astra-sites-menu-page">
<?php $this->render( $action ); ?>
</div>
<?php
}
/**
* View actions
*
* @since 1.0.11
*/
public function get_view_actions() {
if ( empty( $this->view_actions ) ) {
$this->view_actions = apply_filters(
'astra_sites_menu_item',
array()
);
}
return $this->view_actions;
}
/**
* Prints HTML content for tabs
*
* @param mixed $action Action name.
* @since 1.0.6
*/
public function render( $action ) {
// Settings update message.
if ( isset( $_REQUEST['message'] ) && ( 'saved' === $_REQUEST['message'] || 'saved_ext' === $_REQUEST['message'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended
?>
<span id="message" class="notice astra-sites-notice notice-success is-dismissive"><p> <?php esc_html_e( 'Settings saved successfully.', 'astra-sites' ); ?> </p></span>
<?php
}
$current_slug = isset( $_GET['page'] ) ? esc_attr( $_GET['page'] ) : 'starter-templates'; // phpcs:ignore WordPress.Security.NonceVerification.Recommended
$default_page_builder = $this->get_setting( 'page_builder' );
if ( isset( $_GET['action'] ) && 'site-import' === $_GET['action'] ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended
$status = Astra_Sites_Batch_Site_Import::get_instance()->get_status();
$import_status = isset( $status['status'] ) ? $status['status'] : '';
$status_class = 'invalid_site_id' === $import_status || 'premium_sites' === $import_status ? 'failed' : '';
$step_class = '';
if ( ! empty( $status ) ) {
$step_class = isset( $status['step'] ) && 'complete' === $status['step'] ? 'success' : '';
}
?>
<div class="astra-sites-welcome astra-sites-import-screen <?php echo esc_attr( $status_class ); ?>">
<div class="inner-wrap">
<div class="inner">
<div class="header">
<?php
$white_label = false;
$white_label_class = '';
if ( is_callable( 'Astra_Ext_White_Label_Markup::get_whitelabel_string' ) ) {
$white_label_title = Astra_Ext_White_Label_Markup::get_whitelabel_string( 'astra-sites', 'name' );
if ( $white_label_title ) {
$white_label = true;
$white_label_class = 'white-label-enabled';
}
}
?>
<span class="logo <?php echo esc_attr( $white_label_class ); ?>">
<?php if ( ! $white_label ) { ?>
<img src="<?php echo esc_url( ASTRA_SITES_URI . 'inc/assets/images/logo.svg' ); ?>">
<?php } else { ?>
<?php echo esc_html( Astra_Sites_White_Label::get_instance()->get_white_label_name() ); ?>
<?php } ?>
<h3 class="title"><?php esc_html_e( 'Importing Starter Template...', 'astra-sites' ); ?></h3>
</span>
</div>
<div class="content">
<?php if ( 'invalid_site_id' === $import_status ) { ?>
<p><?php esc_html_e( 'The demo you are importing seems invalid. The site is not found.', 'astra-sites' ); ?></p>
<?php } elseif ( 'premium_sites' === $import_status ) { ?>
<p><?php esc_html_e( 'The demo you are importing is a premium demo.', 'astra-sites' ); ?> <a href="https://wpastra.com/pricing/?utm_source=batch-site-import&utm_campaign=astra-sites&utm_medium=batch-import" class="" target="_blank"><?php esc_html_e( 'Get Agency Bundle', 'astra-sites' ); ?><i class="dashicons dashicons-external"></i></a></p>
<?php } else { ?>
<p><?php esc_html_e( 'The import process can take a few minutes depending on the size of the site and speed of the connection.', 'astra-sites' ); ?></p>
<?php } ?>
<ul class="import-steps">
<li class="import-step <?php echo esc_attr( $step_class ); ?>" data-step="preparing">
<?php esc_html_e( 'Preparing Site Import', 'astra-sites' ); ?>
</li>
<li class="import-step <?php echo esc_attr( $step_class ); ?>" data-step="install_plugins">
<?php esc_html_e( 'Installing Required Plugins', 'astra-sites' ); ?>
</li>
<li class="import-step <?php echo esc_attr( $step_class ); ?>" data-step="import_contact_forms">
<?php esc_html_e( 'Importing Contact Forms', 'astra-sites' ); ?>
</li>
<li class="import-step <?php echo esc_attr( $step_class ); ?>" data-step="import_customizer_settings">
<?php esc_html_e( 'Setting up the Theme', 'astra-sites' ); ?>
</li>
<li class="import-step <?php echo esc_attr( $step_class ); ?>" data-step="import_content">
<?php esc_html_e( 'Importing Media, Posts, and Pages', 'astra-sites' ); ?>
</li>
<li class="import-step <?php echo esc_attr( $step_class ); ?>" data-step="import_options">
<?php esc_html_e( 'Importing Site Options', 'astra-sites' ); ?>
</li>
<li class="import-step <?php echo esc_attr( $step_class ); ?>" data-step="import_widgets">
<?php esc_html_e( 'Importing Sidebar and Widgets', 'astra-sites' ); ?>
</li>
<li class="import-step <?php echo esc_attr( $step_class ); ?>" data-step="complete">
<?php esc_html_e( 'Import Complete', 'astra-sites' ); ?>
</li>
</ul>
<?php if ( 'success' === $step_class ) { ?>
<p>
<?php esc_html_e( 'Site Imported Successfully!', 'astra-sites' ); ?>
<a class="view-site-button" href="<?php echo esc_url( site_url() ); ?>" target="_blank"><?php esc_html_e( 'Visit Site', 'astra-sites' ); ?> <i class="dashicons dashicons-external"></i></a>
</p>
<?php } ?>
</div>
</div>
</div>
</div>
<?php
} elseif ( empty( $default_page_builder ) || isset( $_GET['change-page-builder'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended
$plugins = get_option( 'active_plugins', array() );
$page_builders = array();
if ( $plugins ) {
foreach ( $plugins as $key => $plugin_init ) {
if ( false !== strpos( $plugin_init, 'elementor' ) ) {
$page_builders[] = 'elementor';
}
if ( false !== strpos( $plugin_init, 'beaver-builder' ) ) {
$page_builders[] = 'beaver-builder';
}
if ( false !== strpos( $plugin_init, 'brizy' ) ) {
$page_builders[] = 'brizy';
}
}
}
$page_builders = array_unique( $page_builders );
$page_builders[] = 'gutenberg';
$page_builders = implode( ',', $page_builders );
?>
<div class="astra-sites-welcome astra-sites-change-page-builder" data-plugins="<?php echo esc_attr( $page_builders ); ?>">
<div class="inner-wrap">
<div class="inner">
<div class="header">
<?php
$white_label = false;
$white_label_class = '';
if ( is_callable( 'Astra_Ext_White_Label_Markup::get_whitelabel_string' ) ) {
$white_label_title = Astra_Ext_White_Label_Markup::get_whitelabel_string( 'astra-sites', 'name' );
if ( $white_label_title ) {
$white_label = true;
$white_label_class = 'white-label-enabled';
}
}
?>
<span class="logo <?php echo esc_attr( $white_label_class ); ?>">
<?php if ( ! $white_label ) { ?>
<img src="<?php echo esc_url( ASTRA_SITES_URI . 'inc/assets/images/logo.svg' ); ?>">
<?php } else { ?>
<?php echo esc_html( Astra_Sites_White_Label::get_instance()->get_white_label_name() ); ?>
<?php } ?>
<h3 class="title"><?php esc_html_e( 'Getting Started', 'astra-sites' ); ?></h3>
</span>
<a href="<?php echo esc_url( admin_url() ); ?>" class="close"><span class="dashicons dashicons-no-alt"></span></a>
</div>
<form id="astra-sites-welcome-form" enctype="multipart/form-data" method="post">
<h1><?php esc_html_e( 'Select Page Builder', 'astra-sites' ); ?></h1>
<p><?php esc_html_e( 'We offer starter templates that can be imported in one click. These sites are available in the following page builders. Please choose your preferred page builder from the list below.', 'astra-sites' ); ?></p>
<div class="fields">
<ul class="page-builders">
<?php
$default_page_builder = $this->get_setting( 'page_builder' );
$page_builders = $this->get_page_builders();
foreach ( $page_builders as $key => $page_builder ) {
?>
<li data-page-builder="<?php echo esc_html( $page_builder['slug'] ); ?>">
<label>
<input type="radio" name="page_builder" value="<?php echo esc_html( $page_builder['name'] ); ?>">
<img src="<?php echo esc_url( $this->get_page_builder_image( $page_builder['slug'] ) ); ?>" />
<div class="title"><?php echo esc_html( $page_builder['name'] ); ?></div>
</label>
</li>
<?php
}
?>
</ul>
</div>
<input type="hidden" name="message" value="saved" />
<?php wp_nonce_field( 'astra-sites-welcome-screen', 'astra-sites-page-builder' ); ?>
</form>
</div>
</div>
</div>
<?php } else { ?>
<div class="nav-tab-wrapper">
<?php
$white_label = false;
$white_label_class = '';
if ( is_callable( 'Astra_Ext_White_Label_Markup::get_whitelabel_string' ) ) {
$white_label_title = Astra_Ext_White_Label_Markup::get_whitelabel_string( 'astra-sites', 'name' );
if ( $white_label_title ) {
$white_label = true;
$white_label_class = 'white-label-enabled';
}
}
?>
<div class="logo <?php echo esc_attr( $white_label_class ); ?>">
<div class="astra-sites-logo-wrap">
<?php if ( ! $white_label ) { ?>
<img src="<?php echo esc_url( ASTRA_SITES_URI . 'inc/assets/images/logo.svg' ); ?>">
<?php } else { ?>
<?php echo esc_html( Astra_Sites_White_Label::get_instance()->get_white_label_name() ); ?>
<?php } ?>
</div>
</div>
<div class="back-to-layout" title="Back to Layout"><i class="ast-icon-chevron-left"></i></div>
<div id="astra-sites-filters" class="hide-on-mobile">
<?php $this->site_filters(); ?>
</div>
<div class="form">
<div class="filters-wrap favorite-filters-wrap header-actions">
<div class="filters-slug">
<ul class="filter-links">
<li>
<a title="<?php esc_html_e( 'My Favorite', 'astra-sites' ); ?>" href="#" class="astra-sites-show-favorite-button">
<i class="ast-icon-heart"></i>
</a>
</li>
<li>
<a title="<?php esc_html_e( 'Sync Library', 'astra-sites' ); ?>" href="#" class="astra-sites-sync-library-button">
<i class="ast-icon-refresh"></i>
</a>
</li>
</ul>
</div>
</div>
<span class="page-builder-icon">
<div class="selected-page-builder">
<?php
$page_builder = $this->get_default_page_builder();
if ( $page_builder ) {
?>
<img src="<?php echo esc_url( $this->get_page_builder_image( $page_builder['slug'] ) ); ?>" />
<span class="page-builder-title"><?php echo esc_html( $page_builder['name'] ); ?></span>
<span class="dashicons dashicons-arrow-down"></span>
<?php } ?>
</div>
<ul class="page-builders">
<?php
$default_page_builder = $this->get_setting( 'page_builder' );
$page_builders = Astra_Sites::get_instance()->get_page_builders();
foreach ( $page_builders as $key => $page_builder ) {
$class = '';
if ( $default_page_builder === $page_builder['slug'] ) {
$class = 'active';
}
?>
<li data-page-builder="<?php echo esc_html( $page_builder['slug'] ); ?>" class="<?php echo esc_html( $class ); ?>">
<img src="<?php echo esc_url( $this->get_page_builder_image( $page_builder['slug'] ) ); ?>" />
<div class="title"><?php echo esc_html( $page_builder['name'] ); ?></div>
</li>
<?php
}
?>
</ul>
<form id="astra-sites-welcome-form-inline" enctype="multipart/form-data" method="post" style="display: none;">
<div class="fields">
<input type="hidden" name="page_builder" class="page-builder-input" required="required" />
</div>
<input type="hidden" name="message" value="saved" />
<?php wp_nonce_field( 'astra-sites-welcome-screen', 'astra-sites-page-builder' ); ?>
</form>
</span>
</div>
<?php
$view_actions = $this->get_view_actions();
foreach ( $view_actions as $slug => $data ) {
if ( ! $data['show'] ) {
continue;
}
$url = $this->get_page_url( $slug );
if ( 'general' === $slug ) {
update_option( 'astra_parent_page_url', $url );
}
$active = ( $slug === $action ) ? 'nav-tab-active' : '';
?>
<a class='nav-tab <?php echo esc_attr( $active ); ?>' href='<?php echo esc_url( $url ); ?>'> <?php echo esc_html( $data['label'] ); ?> </a>
<?php } ?>
</div><!-- .nav-tab-wrapper -->
<div id="astra-sites-filters" class="hide-on-desktop">
<?php $this->site_filters(); ?>
</div>
<?php
}
}
/**
* Site Filters
*
* @since 2.0.0
*
* @return void
*/
public function site_filters() {
?>
<div class="wp-filter hide-if-no-js">
<div class="section-left">
<div class="search-form">
<?php
$categories = Astra_Sites::get_instance()->get_api_option( 'astra-sites-categories' );
if ( ! empty( $categories ) ) {
?>
<div id="astra-sites__category-filter" class="dropdown-check-list" tabindex="100">
<span class="astra-sites__category-filter-anchor" data-slug=""><?php esc_html_e( 'All', 'astra-sites' ); ?></span>
<ul class="astra-sites__category-filter-items">
<li class="ast-sites__filter-wrap category-active" data-slug=""><?php esc_html_e( 'All', 'astra-sites' ); ?> </li>
<?php
foreach ( $categories as $key => $value ) {
if ( 'free' !== $value['slug'] ) {
?>
<li class="ast-sites__filter-wrap" data-slug="<?php echo esc_attr( $value['slug'] ); ?>"><?php echo esc_html( $value['name'] ); ?> </li>
<?php
}
}
?>
<li class="ast-sites__filter-wrap-checkbox first-wrap">
<label>
<input id="radio-all" type="radio" name="ast-sites-radio" class="checkbox active" value="" checked /><?php esc_html_e( 'All', 'astra-sites' ); ?>
</label>
</li>
<li class="ast-sites__filter-wrap-checkbox">
<label>
<input id="radio-free" type="radio" name="ast-sites-radio" class="checkbox" value="free" /><?php esc_html_e( 'Free', 'astra-sites' ); ?>
</label>
</li>
<li class="ast-sites__filter-wrap-checkbox">
<label>
<input id="radio-agency" type="radio" name="ast-sites-radio" class="checkbox" value="agency" /><?php esc_html_e( 'Agency', 'astra-sites' ); ?>
</label>
</li>
</ul>
</div>
<?php
}
?>
<input autocomplete="off" placeholder="<?php esc_html_e( 'Search...', 'astra-sites' ); ?>" type="search" aria-describedby="live-search-desc" id="wp-filter-search-input" class="wp-filter-search">
<span class="ast-icon-search search-icon"></span>
<div class="astra-sites-autocomplete-result"></div>
</div>
</div>
</div>
<?php
}
/**
* Get Default Page Builder
*
* @since 2.0.0
*
* @return mixed page builders or empty string.
*/
public function get_default_page_builder() {
$default_page_builder = $this->get_setting( 'page_builder' );
$page_builders = Astra_Sites::get_instance()->get_page_builders();
foreach ( $page_builders as $key => $page_builder ) {
if ( $page_builder['slug'] === $default_page_builder ) {
return $page_builder;
}
}
return '';
}
/**
* Get Page Builders
*
* @since 2.0.0
*
* @param string $slug Page Builder Slug.
* @return array page builders.
*/
public function get_page_builder_image( $slug ) {
$image = '';
switch ( $slug ) {
case 'elementor':
$image = ASTRA_SITES_URI . 'inc/assets/images/elementor.jpg';
break;
case 'beaver-builder':
$image = ASTRA_SITES_URI . 'inc/assets/images/beaver-builder.jpg';
break;
case 'gutenberg':
$image = ASTRA_SITES_URI . 'inc/assets/images/gutenberg.jpg';
break;
case 'brizy':
$image = ASTRA_SITES_URI . 'inc/assets/images/brizy.jpg';
break;
}
return $image;
}
/**
* Page Builder List
*
* @since 1.4.0
* @return array
*/
public function get_page_builders() {
return array(
'elementor' => array(
'slug' => 'elementor',
'name' => esc_html__( 'Elementor', 'astra-sites' ),
'image_url' => ASTRA_SITES_URI . 'inc/assets/images/elementor.jpg',
),
'beaver-builder' => array(
'slug' => 'beaver-builder',
'name' => esc_html__( 'Beaver Builder', 'astra-sites' ),
'image_url' => ASTRA_SITES_URI . 'inc/assets/images/beaver-builder.jpg',
),
'gutenberg' => array(
'slug' => 'gutenberg',
'name' => esc_html__( 'Gutenberg', 'astra-sites' ),
'image_url' => ASTRA_SITES_URI . 'inc/assets/images/gutenberg.jpg',
),
'brizy' => array(
'slug' => 'brizy',
'name' => esc_html__( 'Brizy', 'astra-sites' ),
'image_url' => ASTRA_SITES_URI . 'inc/assets/images/brizy.jpg',
),
);
}
/**
* Get and return page URL
*
* @param string $menu_slug Menu name.
* @since 1.0.6
* @return string page url
*/
public function get_page_url( $menu_slug ) {
$current_slug = isset( $_GET['page'] ) ? esc_attr( $_GET['page'] ) : 'starter-templates'; // phpcs:ignore WordPress.Security.NonceVerification.Recommended
$parent_page = 'themes.php';
if ( strpos( $parent_page, '?' ) !== false ) {
$query_var = '&page=' . $current_slug;
} else {
$query_var = '?page=' . $current_slug;
}
$parent_page_url = admin_url( $parent_page . $query_var );
$url = $parent_page_url . '&action=' . $menu_slug;
return esc_url( $url );
}
/**
* Add main menu
*
* @since 1.0.6
*/
public function add_admin_menu() {
$page_title = apply_filters( 'astra_sites_menu_page_title', esc_html__( 'Starter Templates', 'astra-sites' ) );
$page = add_theme_page( $page_title, $page_title, 'manage_options', 'starter-templates', array( $this, 'menu_callback' ) );
}
/**
* Menu callback
*
* @since 1.0.6
*/
public function menu_callback() {
$current_slug = isset( $_GET['action'] ) ? esc_attr( $_GET['action'] ) : 'general'; // phpcs:ignore WordPress.Security.NonceVerification.Recommended
$active_tab = str_replace( '_', '-', $current_slug );
$current_slug = str_replace( '-', '_', $current_slug );
?>
<div class="astra-sites-menu-page-wrapper">
<?php $this->init_nav_menu( $active_tab ); ?>
<?php do_action( 'astra_sites_menu_' . esc_attr( $current_slug ) . '_action' ); ?>
</div>
<?php
}
/**
* Include general page
*
* @since 1.0.6
*/
public function general_page() {
$default_page_builder = $this->get_setting( 'page_builder' );
if ( empty( $default_page_builder ) || isset( $_GET['change-page-builder'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended
return;
}
$global_cpt_meta = array(
'category_slug' => 'astra-site-category',
'cpt_slug' => 'astra-sites',
'page_builder' => 'astra-site-page-builder',
);
require_once ASTRA_SITES_DIR . 'inc/includes/admin-page.php';
}
/**
* Converts a period of time in seconds into a human-readable format representing the interval.
*
* @since 2.0.0
*
* Example:
*
* echo self::interval( 90 );
* // 1 minute 30 seconds
*
* @param int $since A period of time in seconds.
* @return string An interval represented as a string.
*/
public function interval( $since ) {
// Array of time period chunks.
$chunks = array(
/* translators: 1: The number of years in an interval of time. */
array( 60 * 60 * 24 * 365, _n_noop( '%s year', '%s years', 'astra-sites' ) ),
/* translators: 1: The number of months in an interval of time. */
array( 60 * 60 * 24 * 30, _n_noop( '%s month', '%s months', 'astra-sites' ) ),
/* translators: 1: The number of weeks in an interval of time. */
array( 60 * 60 * 24 * 7, _n_noop( '%s week', '%s weeks', 'astra-sites' ) ),
/* translators: 1: The number of days in an interval of time. */
array( 60 * 60 * 24, _n_noop( '%s day', '%s days', 'astra-sites' ) ),
/* translators: 1: The number of hours in an interval of time. */
array( 60 * 60, _n_noop( '%s hour', '%s hours', 'astra-sites' ) ),
/* translators: 1: The number of minutes in an interval of time. */
array( 60, _n_noop( '%s minute', '%s minutes', 'astra-sites' ) ),
/* translators: 1: The number of seconds in an interval of time. */
array( 1, _n_noop( '%s second', '%s seconds', 'astra-sites' ) ),
);
if ( $since <= 0 ) {
return esc_html__( 'now', 'astra-sites' );
}
/**
* We only want to output two chunks of time here, eg:
* x years, xx months
* x days, xx hours
* so there's only two bits of calculation below:
*/
$j = count( $chunks );
// Step one: the first chunk.
for ( $i = 0; $i < $j; $i++ ) {
$seconds = $chunks[ $i ][0];
$name = $chunks[ $i ][1];
// Finding the biggest chunk (if the chunk fits, break).
$count = floor( $since / $seconds );
if ( $count ) {
break;
}
}
// Set output var.
$output = sprintf( translate_nooped_plural( $name, $count, 'astra-sites' ), $count );
// Step two: the second chunk.
if ( $i + 1 < $j ) {
$seconds2 = $chunks[ $i + 1 ][0];
$name2 = $chunks[ $i + 1 ][1];
$count2 = floor( ( $since - ( $seconds * $count ) ) / $seconds2 );
if ( $count2 ) {
// Add to output var.
$output .= ' ' . sprintf( translate_nooped_plural( $name2, $count2, 'astra-sites' ), $count2 );
}
}
return $output;
}
/**
* Check Cron Status
*
* Gets the current cron status by performing a test spawn. Cached for one hour when all is well.
*
* @since 2.0.0
*
* @param bool $cache Whether to use the cached result from previous calls.
* @return true|WP_Error Boolean true if the cron spawner is working as expected, or a WP_Error object if not.
*/
public static function test_cron( $cache = true ) {
global $wp_version;
if ( defined( 'DISABLE_WP_CRON' ) && DISABLE_WP_CRON ) {
return new WP_Error( 'wp_portfolio_cron_error', esc_html__( 'ERROR! Cron schedules are disabled by setting constant DISABLE_WP_CRON to true.<br/>To start the import process please enable the cron by setting the constant to false. E.g. define( \'DISABLE_WP_CRON\', false );', 'astra-sites' ) );
}
if ( defined( 'ALTERNATE_WP_CRON' ) && ALTERNATE_WP_CRON ) {
return new WP_Error( 'wp_portfolio_cron_error', esc_html__( 'ERROR! Cron schedules are disabled by setting constant ALTERNATE_WP_CRON to true.<br/>To start the import process please enable the cron by setting the constant to false. E.g. define( \'ALTERNATE_WP_CRON\', false );', 'astra-sites' ) );
}
$cached_status = get_transient( 'astra-portfolio-cron-test-ok' );
if ( $cache && $cached_status ) {
return true;
}
$sslverify = version_compare( $wp_version, 4.0, '<' );
$doing_wp_cron = sprintf( '%.22F', microtime( true ) );
$cron_request = apply_filters(
'cron_request',
array(
'url' => site_url( 'wp-cron.php?doing_wp_cron=' . $doing_wp_cron ),
'key' => $doing_wp_cron,
'args' => array(
'timeout' => 3,
'blocking' => true,
'sslverify' => apply_filters( 'https_local_ssl_verify', $sslverify ),
),
)
);
$cron_request['args']['blocking'] = true;
$result = wp_remote_post( $cron_request['url'], $cron_request['args'] );
if ( is_wp_error( $result ) ) {
return $result;
} elseif ( wp_remote_retrieve_response_code( $result ) >= 300 ) {
return new WP_Error(
'unexpected_http_response_code',
sprintf(
/* translators: 1: The HTTP response code. */
__( 'Unexpected HTTP response code: %s', 'astra-sites' ),
intval( wp_remote_retrieve_response_code( $result ) )
)
);
} else {
set_transient( 'astra-portfolio-cron-test-ok', 1, 3600 );
return true;
}
}
}
Astra_Sites_Page::get_instance();
}// End if.