File: /home/vhosts/harpoeditore.it/httpdocs/wp-content/themes/neve/inc/core/admin.php
<?php
/**
* Admin functionality
*
* Author: Andrei Baicus <andrei@themeisle.com>
* Created on: 17/08/2018
*
* @package Neve\Core
*/
namespace Neve\Core;
use Neve\Core\Settings\Mods_Migrator;
use Neve\Traits\Utils;
/**
* Class Admin
*
* @package Neve\Core
*/
class Admin {
use Utils;
/**
* Dismiss notice key.
*
* @var string
*/
private $dismiss_notice_key = 'neve_notice_dismissed';
/**
* Current theme name
*
* @var string $theme_name Theme name.
*/
private $theme_name;
/**
* Theme Details
*
* @var \WP_Theme
*/
private $theme_args;
/**
* Dismiss bf notice key.
*
* @var string
*/
private $dismiss_bf_notice_key = 'neve_bf_notice_dismissed';
/**
* Admin constructor.
*/
public function __construct() {
$this->set_props();
add_action(
'admin_init',
function () {
if ( get_option( 'themeisle_ob_plugins_installed' ) !== 'yes' ) {
return;
}
update_option( 'themeisle_blocks_settings_redirect', false );
delete_transient( 'wpforms_activation_redirect' );
update_option( 'themeisle_ob_plugins_installed', 'no' );
},
0
);
add_action( 'enqueue_block_editor_assets', [ $this, 'enqueue_gutenberg_scripts' ] );
add_filter( 'themeisle_sdk_hide_dashboard_widget', '__return_true' );
if ( get_option( $this->dismiss_notice_key ) !== 'yes' ) {
add_action( 'admin_notices', [ $this, 'admin_notice' ], 0 );
add_action( 'wp_ajax_neve_dismiss_welcome_notice', [ $this, 'remove_notice' ] );
}
if ( get_option( $this->dismiss_bf_notice_key ) !== 'yes' ) {
add_action( 'admin_notices', [ $this, 'bf_notice' ] );
add_action( 'wp_ajax_neve_dismiss_bf_notice', [ $this, 'remove_bf_notice' ] );
}
add_action( 'admin_menu', [ $this, 'remove_background_submenu' ], 110 );
add_action( 'after_switch_theme', [ $this, 'get_previous_theme' ] );
add_filter( 'all_plugins', array( $this, 'change_plugin_names' ) );
add_action( 'after_switch_theme', array( $this, 'migrate_options' ) );
$this->run_skin_and_builder_switches();
add_filter( 'ti_tpc_theme_mods_pre_import', [ $this, 'migrate_theme_mods_for_new_skin' ] );
add_action( 'rest_api_init', [ $this, 'register_rest_routes' ] );
add_filter( 'neve_pro_react_controls_localization', [ $this, 'adapt_conditional_headers' ] );
}
/**
* Register script for react components.
*/
public function register_react_components() {
$deps = include trailingslashit( NEVE_MAIN_DIR ) . 'assets/apps/components/build/components.asset.php';
wp_register_script( 'neve-components', trailingslashit( NEVE_ASSETS_URL ) . 'apps/components/build/components.js', $deps['dependencies'], $deps['version'], false );
wp_localize_script(
'neve-components',
'nvComponents',
[
'shouldUseColorPickerFix' => (int) ( ! neve_is_using_wp_version( '5.8' ) ),
'customizerURL' => esc_url( admin_url( 'customize.php' ) ),
]
);
wp_register_style( 'neve-components', trailingslashit( NEVE_ASSETS_URL ) . 'apps/components/build/style-components.css', [ 'wp-components' ], $deps['version'] );
wp_add_inline_style( 'neve-components', Dynamic_Css::get_root_css() );
}
/**
* Switch to the new 3.0 features.
*
* @return void
*
* @since 3.0.0
*/
public function run_skin_and_builder_switches() {
$flag = 'neve_ran_migrations';
if ( get_theme_mod( $flag ) === true ) {
return;
}
set_theme_mod( $flag, true );
if ( neve_had_old_hfb() ) {
set_theme_mod( 'neve_migrated_builders', false );
}
$all_mods = get_theme_mods();
$mods = [
'hfg_header_layout',
'hfg_footer_layout',
'neve_blog_archive_layout',
'neve_headings_font_family',
'neve_body_font_family',
'neve_global_colors',
'neve_button_appearance',
'neve_secondary_button_appearance',
'neve_typeface_general',
'neve_form_fields_padding',
'neve_default_sidebar_layout',
'neve_advanced_layout_options',
];
$should_switch = false;
foreach ( $mods as $mod_to_check ) {
if ( isset( $all_mods[ $mod_to_check ] ) ) {
$should_switch = true;
break;
}
}
if ( ! $should_switch ) {
return;
}
set_theme_mod( 'neve_new_skin', 'old' );
set_theme_mod( 'neve_had_old_skin', true );
}
/**
* Filter out old HFG values if the new builder is active.
*
* @param array $theme_mods the theme mods array.
*
* @return array
* @since 3.0.0
*/
public function migrate_theme_mods_for_new_skin( $theme_mods ) {
if ( ! neve_is_new_skin() ) {
return $theme_mods;
}
$migrator = new Mods_Migrator( $theme_mods );
return $migrator->get_migrated_mods();
}
/**
* Filter localization data to adapt to the new builder.
*
* @param array $array localization array.
*
* @return array
*/
public function adapt_conditional_headers( $array ) {
if ( ! neve_is_new_builder() ) {
return $array;
}
if ( isset( $array['headerControls'] ) ) {
$array['headerControls'][] = 'hfg_header_layout_v2';
}
$array['currentValues'] = [ 'hfg_header_layout_v2' => json_decode( get_theme_mod( 'hfg_header_layout_v2', wp_json_encode( neve_hfg_header_settings() ) ), true ) ];
return $array;
}
/**
* Register Rest Routes.
*/
public function register_rest_routes() {
register_rest_route(
'nv/migration',
'/new_header_builder',
array(
'methods' => \WP_REST_Server::READABLE,
'callback' => [ $this, 'migrate_builders_data' ],
'permission_callback' => function () {
return current_user_can( 'manage_options' );
},
)
);
}
/**
* Migration routine request.
*
* @param \WP_REST_Request $request the received request.
*
* @return \WP_REST_Response
*
* @since 3.0.0
*/
public function migrate_builders_data( \WP_REST_Request $request ) {
$is_rollback = $request->get_header( 'rollback' );
$is_dismiss = $request->get_header( 'dismiss' );
if ( $is_dismiss === 'yes' ) {
remove_theme_mod( 'hfg_header_layout' );
remove_theme_mod( 'hfg_footer_layout' );
return new \WP_REST_Response( [ 'success' => true ], 200 );
}
if ( $is_rollback === 'yes' ) {
set_theme_mod( 'neve_migrated_builders', false );
return new \WP_REST_Response( [ 'success' => true ], 200 );
}
$migrator = new Builder_Migrator();
$response = $migrator->run();
if ( $response === true ) {
set_theme_mod( 'neve_migrated_builders', true );
}
return new \WP_REST_Response( [ 'success' => $response ], 200 );
}
/**
* Drop `Background` submenu item.
*/
public function remove_background_submenu() {
global $submenu;
if ( ! isset( $submenu['themes.php'] ) ) {
return false;
}
foreach ( $submenu['themes.php'] as $index => $submenu_args ) {
foreach ( $submenu_args as $arg_index => $arg ) {
if ( preg_match( '/customize\.php.+autofocus%5Bcontrol%5D=background_image/', $arg ) === 1 ) {
unset( $submenu['themes.php'][ $index ] );
}
}
}
}
/**
* Setup Class Properties
*/
public function set_props() {
$this->theme_args = wp_get_theme();
}
/**
* Get notice screenshot based on previous theme.
*
* @return string Image url.
*/
private function get_notice_picture() {
return get_template_directory_uri() . '/assets/img/sites-list.jpg';
}
/**
* Display Black friday notice.
*/
public function bf_notice() {
if ( ! current_user_can( 'manage_options' ) ) {
return;
}
if ( ! $this->should_show_bf() ) {
return;
}
$css = '
.nv-bf-notice img {
vertical-align: middle;
margin-right: 13px;
width: 24px;
}
';
$this->dismiss_script( '.nv-bf-notice', 'neve_dismiss_bf_notice' );
echo '<div class="nv-bf-notice notice notice-info is-dismissible">';
echo '<div class="notice-dismiss"></div>';
echo '<style>' . wp_kses_post( $css ) . '</style>';
echo '<p>';
echo '<img src="' . esc_url( get_template_directory_uri() . '/assets/img/dashboard/logo.svg' ) . '" alt="' . esc_attr( __( 'Neve Theme Logo', 'neve' ) ) . '">';
echo wp_kses_post(
sprintf(
// translators: %1$s - sale title, %2$s - license type, %3$s - number of licenses, %4$s - url
__( '%1$s - Save big with a %2$s of Neve Agency Plan. %3$s, for a limited time. %4$s', 'neve' ),
'<strong>' . __( 'Neve Black Friday Sale', 'neve' ) . '</strong>',
'<strong>' . __( 'Lifetime License', 'neve' ) . '</strong>',
'<strong>' . __( 'Only 100 licenses', 'neve' ) . '</strong>',
'<a href="' . tsdk_utmify( 'https://themeisle.com/themes/neve/blackfriday', 'dashboard_notice_sitewide', 'blackfriday' ) . '" target="_blank" rel="external noreferrer noopener">' . __( 'Learn more', 'neve' ) . '</a>'
)
);
echo '</p>';
echo '</div>';
}
/**
* Add notice.
*/
public function admin_notice() {
if ( apply_filters( 'neve_disable_starter_sites_admin_notice', false ) === true ) {
return;
}
if ( defined( 'TI_ONBOARDING_DISABLED' ) && TI_ONBOARDING_DISABLED === true ) {
return;
}
$current_screen = get_current_screen();
if ( $current_screen->id !== 'dashboard' && $current_screen->id !== 'themes' ) {
return;
}
if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) {
return;
}
if ( is_network_admin() ) {
return;
}
if ( ! current_user_can( 'manage_options' ) ) {
return;
}
// to check under the gutenberg v5.5.0
if ( function_exists( 'is_gutenberg_page' ) && is_gutenberg_page() ) {
return;
}
// to check above the gutenberg v5.5.0 (is_gutenberg_page is deprecated with )
if ( method_exists( $current_screen, 'is_block_editor' ) ) {
if ( $current_screen->is_block_editor() ) {
return;
}
}
/**
* Backwards compatibility.
*/
global $current_user;
$user_id = $current_user->ID;
$dismissed_notice = get_user_meta( $user_id, $this->dismiss_notice_key, true );
if ( $dismissed_notice === 'dismissed' ) {
update_option( $this->dismiss_notice_key, 'yes' );
}
if ( get_option( $this->dismiss_notice_key, 'no' ) === 'yes' ) {
return;
}
// Let's dismiss the notice if the user sees it for more than 1 week.
$activated_time = get_option( 'neve_install' );
if ( ! empty( $activated_time ) ) {
if ( time() - intval( $activated_time ) > WEEK_IN_SECONDS ) {
update_option( $this->dismiss_notice_key, 'yes' );
return;
}
}
$style = '
.ti-about-notice{
position: relative;
}
.ti-about-notice .notice-dismiss{
position: absolute;
z-index: 10;
top: 2px;
padding: 10px 15px 10px 21px;
font-size: 13px;
line-height: 1.23076923;
text-decoration: none;
}
.ti-about-notice .notice-dismiss:before{
position: absolute;
top: 10px;
right: 10px;
transition: all .1s ease-in-out;
background: none;
}
.ti-about-notice .notice-dismiss:hover{
color: #00a0d2;
}
';
echo '<style>' . wp_kses_post( $style ) . '</style>';
$this->dismiss_script( '.nv-welcome-notice', 'neve_dismiss_welcome_notice' );
echo '<div class="nv-welcome-notice updated notice ti-about-notice">';
echo '<div class="notice-dismiss"></div>';
$this->welcome_notice_content();
echo '</div>';
}
/**
* Render welcome notice content
*/
public function welcome_notice_content() {
$name = apply_filters( 'ti_wl_theme_name', $this->theme_args->__get( 'Name' ) );
$template = $this->theme_args->get( 'Template' );
$slug = $this->theme_args->__get( 'stylesheet' );
$theme_page = ! empty( $template ) ? $template . '-welcome' : $slug . '-welcome';
$notice_template = '
<div class="nv-notice-wrapper">
%1$s
<hr/>
<div class="nv-notice-column-container">
<div class="nv-notice-column nv-notice-image">%2$s</div>
<div class="nv-notice-column nv-notice-starter-sites">%3$s</div>
<div class="nv-notice-column nv-notice-documentation">%4$s</div>
</div>
</div>
<style>%5$s</style>';
/* translators: 1 - notice title, 2 - notice message */
$notice_header = sprintf(
'<h2>%1$s</h2><p class="about-description">%2$s</p></hr>',
esc_html__( 'Congratulations!', 'neve' ),
sprintf(
/* translators: %s - theme name */
esc_html__( '%s is now installed and ready to use. We\'ve assembled some links to get you started.', 'neve' ),
$name
)
);
$ob_btn_link = admin_url( defined( 'TIOB_PATH' ) ? 'themes.php?page=tiob-starter-sites&onboarding=yes' : 'themes.php?page=' . $theme_page . '&onboarding=yes#starter-sites' );
$ob_btn = sprintf(
/* translators: 1 - onboarding url, 2 - button text */
'<a href="%1$s" class="button button-primary button-hero install-now" >%2$s</a>',
esc_url( $ob_btn_link ),
sprintf( apply_filters( 'ti_onboarding_neve_start_site_cta', esc_html__( 'Try one of our ready to use Starter Sites', 'neve' ) ) )
);
$ob_return_dashboard = sprintf(
/* translators: 1 - button text */
'<a href="' . esc_url( admin_url() ) . '" class=" ti-return-dashboard button button-secondary button-hero install-now" ><span>%1$s</span></a>',
__( 'Return to your dashboard', 'neve' )
);
$options_page_btn = sprintf(
/* translators: 1 - options page url, 2 - button text */
'<a href="%1$s" class="options-page-btn">%2$s</a>',
esc_url( admin_url( 'themes.php?page=' . $theme_page ) ),
esc_html__( 'or go to the theme settings', 'neve' )
);
$notice_picture = sprintf(
'<picture>
<source srcset="about:blank" media="(max-width: 1024px)">
<img src="%1$s"/>
</picture>',
esc_url( $this->get_notice_picture() )
);
$notice_sites_list = sprintf(
'<div><h3><span class="dashicons dashicons-images-alt2"></span> %1$s</h3><p>%2$s</p></div><div> <p>%3$s</p><p>%4$s</p> </div>',
__( 'Sites Library', 'neve' ),
// translators: %s - Theme name
sprintf( esc_html__( '%s now comes with a sites library with various designs to pick from. Visit our collection of demos that are constantly being added.', 'neve' ), $name ),
$ob_btn,
$options_page_btn
);
$notice_documentation = sprintf(
'<div><h3><span class="dashicons dashicons-format-aside"></span> %1$s</h3><p>%2$s</p><a target="_blank" rel="external noopener noreferrer" href="%3$s"><span class="screen-reader-text">%4$s</span><svg xmlns="http://www.w3.org/2000/svg" focusable="false" role="img" viewBox="0 0 512 512" width="12" height="12" style="margin-right: 5px;"><path fill="currentColor" d="M432 320H400a16 16 0 0 0-16 16V448H64V128H208a16 16 0 0 0 16-16V80a16 16 0 0 0-16-16H48A48 48 0 0 0 0 112V464a48 48 0 0 0 48 48H400a48 48 0 0 0 48-48V336A16 16 0 0 0 432 320ZM488 0h-128c-21.4 0-32 25.9-17 41l35.7 35.7L135 320.4a24 24 0 0 0 0 34L157.7 377a24 24 0 0 0 34 0L435.3 133.3 471 169c15 15 41 4.5 41-17V24A24 24 0 0 0 488 0Z"/></svg>%5$s</a></div><div> <p>%6$s</p></div>',
__( 'Documentation', 'neve' ),
// translators: %s - Theme name
sprintf( esc_html__( 'Need more details? Please check our full documentation for detailed information on how to use %s.', 'neve' ), $name ),
'https://docs.themeisle.com/article/946-neve-doc',
esc_html__( '(opens in a new tab)', 'neve' ),
esc_html__( 'Read full documentation', 'neve' ),
$ob_return_dashboard
);
$style = '
.nv-notice-wrapper h2{
margin: 0;
font-size: 21px;
font-weight: 400;
line-height: 1.2;
}
.nv-notice-wrapper p.about-description{
color: #72777c;
font-size: 16px;
margin: 0;
padding:0px;
}
.nv-notice-wrapper{
padding: 23px 10px 0;
max-width: 1500px;
}
.nv-notice-wrapper hr {
margin: 20px -23px 0;
border-top: 1px solid #f3f4f5;
border-bottom: none;
}
.nv-notice-column-container h3{
margin: 17px 0 0;
font-size: 16px;
line-height: 1.4;
}
.nv-notice-column-container p {
color: #72777c;
}
.nv-notice-text p.ti-return-dashboard {
margin-top: 30px;
}
.nv-notice-column-container .nv-notice-column{
padding-right: 40px;
}
.nv-notice-column-container img{
margin-top: 23px;
width: calc(100% - 40px);
border: 1px solid #f3f4f5;
}
.nv-notice-column-container {
display: -ms-grid;
display: grid;
-ms-grid-columns: 24% 32% 32%;
grid-template-columns: 24% 32% 32%;
margin-bottom: 13px;
}
.nv-notice-column-container a.button.button-hero.button-secondary,
.nv-notice-column-container a.button.button-hero.button-primary{
margin:0px;
}
.nv-notice-column-container .nv-notice-column:not(.nv-notice-image) {
display: -ms-grid;
display: grid;
-ms-grid-rows: auto 100px;
grid-template-rows: auto 100px;
}
@media screen and (max-width: 1280px) {
.nv-notice-wrapper .nv-notice-column-container {
-ms-grid-columns: 50% 50%;
grid-template-columns: 50% 50%;
}
.nv-notice-column-container a.button.button-hero.button-secondary,
.nv-notice-column-container a.button.button-hero.button-primary{
padding:6px 18px;
}
.nv-notice-wrapper .nv-notice-image {
display: none;
}
}
@media screen and (max-width: 870px) {
.nv-notice-wrapper .nv-notice-column-container {
-ms-grid-columns: 100%;
grid-template-columns: 100%;
}
.nv-notice-column-container a.button.button-hero.button-primary{
padding:12px 36px;
}
}
';
echo sprintf(
$notice_template, // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
$notice_header, // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
$notice_picture, // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
$notice_sites_list, // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
$notice_documentation, // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
$style // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
);
}
/**
* Load site import module.
*/
public function load_site_import() {
if ( class_exists( '\TIOB\Main' ) ) {
\TIOB\Main::instance();
}
}
/**
* Enqueue gutenberg scripts.
*/
public function enqueue_gutenberg_scripts() {
$screen = get_current_screen();
// if is_block_editor is `true` we should allow the Gutenberg styles to load eg. the new widgets page.
if ( ! post_type_supports( $screen->post_type, 'editor' ) && $screen->is_block_editor !== true ) {
return;
}
wp_enqueue_script(
'neve-gutenberg-script',
NEVE_ASSETS_URL . 'js/build/all/gutenberg.js',
array( 'wp-blocks', 'wp-dom' ),
NEVE_VERSION,
true
);
$path = neve_is_new_skin() ? 'gutenberg-editor-style' : 'gutenberg-editor-legacy-style';
wp_enqueue_style( 'neve-gutenberg-style', NEVE_ASSETS_URL . 'css/' . $path . ( ( NEVE_DEBUG ) ? '' : '.min' ) . '.css', array(), NEVE_VERSION );
}
/**
* Dismiss notice JS
*
* @param string $notice_class The container class of the notice.
* @param string $notice_action The ajax function to execute.
*/
private function dismiss_script( $notice_class, $notice_action ) {
?>
<script type="text/javascript">
function handleNoticeActions($, notice) {
var actions = $(notice.class).find('.notice-dismiss, .ti-return-dashboard, .install-now, .options-page-btn')
console.log( actions )
$.each(actions, function (index, actionButton) {
console.log( actionButton );
$(actionButton).on('click', function (e) {
e.preventDefault()
var redirect = $(this).attr('href')
$.post(
'<?php echo esc_url( admin_url( 'admin-ajax.php' ) ); ?>',
{
nonce: '<?php echo esc_attr( wp_create_nonce( 'remove_notice_confirmation' ) ); ?>',
action: notice.action,
success: function () {
if (typeof redirect !== 'undefined' && window.location.href !== redirect) {
window.location = redirect
return false
}
$(notice.class).fadeOut()
}
}
)
})
})
}
jQuery( function() {
var notice = {
class: '<?php echo wp_kses_post( $notice_class ); ?>',
action: '<?php echo wp_kses_post( $notice_action ); ?>',
};
handleNoticeActions(jQuery, notice);
})
</script>
<?php
}
/**
* Memorize the previous theme to later display the import template for it.
*/
public function get_previous_theme() {
$previous_theme = strtolower( get_option( 'theme_switched' ) );
set_theme_mod( 'ti_prev_theme', $previous_theme );
}
/**
* Remove notice;
*/
public function remove_notice() {
if ( ! isset( $_POST['nonce'] ) ) {
return;
}
if ( ! wp_verify_nonce( sanitize_text_field( $_POST['nonce'] ), 'remove_notice_confirmation' ) ) {
return;
}
update_option( $this->dismiss_notice_key, 'yes' );
wp_die();
}
/**
* Remove BF notice;
*/
public function remove_bf_notice() {
if ( ! isset( $_POST['nonce'] ) ) {
return;
}
if ( ! wp_verify_nonce( sanitize_text_field( $_POST['nonce'] ), 'remove_notice_confirmation' ) ) {
return;
}
update_option( $this->dismiss_bf_notice_key, 'yes' );
wp_die();
}
/**
* Change Orbit Fox and Otter plugin names to make clear where they are from.
*/
public function change_plugin_names( $plugins ) {
if ( array_key_exists( 'themeisle-companion/themeisle-companion.php', $plugins ) ) {
$plugins['themeisle-companion/themeisle-companion.php']['Name'] = 'Orbit Fox Companion by Neve theme';
}
if ( array_key_exists( 'otter-pro/otter-pro.php', $plugins ) ) {
$plugins['otter-pro/otter-pro.php']['Description'] = $plugins['otter-pro/otter-pro.php']['Description'] . ' It is part of Block Editor Booster from Neve.';
}
return $plugins;
}
/**
* Import neve options when switching to a child theme.
*/
public function migrate_options() {
$old_theme = strtolower( get_option( 'theme_switched' ) );
if ( 'neve' !== $old_theme ) {
return;
}
/* import Neve options */
$neve_mods = get_option( 'theme_mods_neve' );
if ( ! empty( $neve_mods ) ) {
foreach ( $neve_mods as $neve_mod_k => $neve_mod_v ) {
set_theme_mod( $neve_mod_k, $neve_mod_v );
}
}
}
}