| 1 |
<?php |
| 2 |
|
| 3 |
namespace WPAdminify\Inc\Modules\CustomHeaderFooter; |
| 4 |
|
| 5 |
use WPAdminify\Inc\Utils ; |
| 6 |
use WPAdminify\Inc\Modules\CustomHeaderFooter\CustomHeaderFooterModel ; |
| 7 |
// no direct access allowed |
| 8 |
if ( !defined( 'ABSPATH' ) ) { |
| 9 |
exit; |
| 10 |
} |
| 11 |
/** |
| 12 |
* WPAdminify |
| 13 |
* @package Custom CSS/JS |
| 14 |
* |
| 15 |
* @author Jewel Theme <support@jeweltheme.com> |
| 16 |
*/ |
| 17 |
class CustomHeaderFooter extends CustomHeaderFooterModel |
| 18 |
{ |
| 19 |
public $url ; |
| 20 |
public function __construct() |
| 21 |
{ |
| 22 |
$this->url = WP_ADMINIFY_URL . 'Inc/Modules/CustomHeaderFooter'; |
| 23 |
$this->options = ( new CustomHeaderFooterSettings() )->get(); |
| 24 |
$this->options = ( !empty($this->options['custom_scripts']) ? $this->options['custom_scripts'] : '' ); |
| 25 |
if ( is_admin() ) { |
| 26 |
add_action( 'admin_enqueue_scripts', [ $this, 'enqueue_scripts' ] ); |
| 27 |
} |
| 28 |
add_action( 'wp_head', [ $this, 'adminify_header_scripts' ], 9999 ); |
| 29 |
add_action( 'wp_footer', [ $this, 'adminify_footer_scripts' ], 9999 ); |
| 30 |
add_action( 'the_content', [ $this, 'adminify_content_scripts' ] ); |
| 31 |
} |
| 32 |
|
| 33 |
// Add Header Scripts |
| 34 |
public function adminify_header_scripts() |
| 35 |
{ |
| 36 |
$this->adminify_custom_css_js_script( 'header' ); |
| 37 |
} |
| 38 |
|
| 39 |
// Add Footer Scripts |
| 40 |
public function adminify_footer_scripts() |
| 41 |
{ |
| 42 |
$this->adminify_custom_css_js_script( 'footer' ); |
| 43 |
} |
| 44 |
|
| 45 |
// Add Footer Scripts |
| 46 |
public function adminify_content_scripts( $content ) |
| 47 |
{ |
| 48 |
return $this->adminify_custom_css_js_script( false, $content ); |
| 49 |
} |
| 50 |
|
| 51 |
/** |
| 52 |
* Render Snippet |
| 53 |
* |
| 54 |
* @param [since] 1.0.0 |
| 55 |
* |
| 56 |
* @return void |
| 57 |
*/ |
| 58 |
public function render_snippet( $value ) |
| 59 |
{ |
| 60 |
// $device_display = wp_is_mobile() ? 'desktop' : 'mobile'; |
| 61 |
|
| 62 |
if ( $value['script_type'] == 'css' ) { |
| 63 |
|
| 64 |
if ( !empty($value['custom_css']) ) { |
| 65 |
$stat_tag = "/<style>/m"; |
| 66 |
$end_tag = "#</style>#m"; |
| 67 |
$result_start = preg_match( $stat_tag, $value['custom_css'] ); |
| 68 |
$result_end = preg_match( $end_tag, $value['custom_css'] ); |
| 69 |
echo "\n<!-- Start of WP Adminify Custom CSS - Snippet#{$value['title']} -->\n" ; |
| 70 |
echo ( !$result_start && !$result_end ? '<style>' : '' ) ; |
| 71 |
echo "\n{$value['custom_css']}\n" ; |
| 72 |
echo ( !$result_start && !$result_end ? '</style>' : '' ) ; |
| 73 |
echo "\n<!-- /End of WP Adminify Custom CSS -->\n" ; |
| 74 |
} |
| 75 |
|
| 76 |
} elseif ( $value['script_type'] === 'js' ) { |
| 77 |
|
| 78 |
if ( !empty($value['custom_js']) ) { |
| 79 |
$stat_tag = "/<script>/m"; |
| 80 |
$end_tag = "#</script>#m"; |
| 81 |
$result_start = preg_match( $stat_tag, $value['custom_js'] ); |
| 82 |
$result_end = preg_match( $end_tag, $value['custom_js'] ); |
| 83 |
echo "\n<!-- Start of WP Adminify Custom JS - Snippet#{$value['title']} -->\n" ; |
| 84 |
echo ( !$result_start && !$result_end ? '<script>' : '' ) ; |
| 85 |
echo "\n{$value['custom_js']}\n" ; |
| 86 |
echo ( !$result_start && !$result_end ? '</script>' : '' ) ; |
| 87 |
echo "\n<!-- /End of WP Adminify Custom JS -->\n" ; |
| 88 |
} |
| 89 |
|
| 90 |
} |
| 91 |
|
| 92 |
} |
| 93 |
|
| 94 |
/** |
| 95 |
* Add Snippet |
| 96 |
* |
| 97 |
* @return void |
| 98 |
*/ |
| 99 |
public function adminify_custom_css_js_script( $location = '', $content = '' ) |
| 100 |
{ |
| 101 |
$options = $this->options; |
| 102 |
$before_content = ''; |
| 103 |
$after_content = ''; |
| 104 |
if ( !empty($options) ) { |
| 105 |
foreach ( $options as $key => $value ) { |
| 106 |
$output = ''; |
| 107 |
if ( $value['location'] === $location ) { |
| 108 |
switch ( $value['display_on'] ) { |
| 109 |
case 'full_site': |
| 110 |
$output = $this->render_snippet( $value ); |
| 111 |
break; |
| 112 |
case 's_posts': |
| 113 |
break; |
| 114 |
case 's_pages': |
| 115 |
break; |
| 116 |
case 's_categories': |
| 117 |
break; |
| 118 |
case 's_custom_posts': |
| 119 |
break; |
| 120 |
case 's_tags': |
| 121 |
break; |
| 122 |
} |
| 123 |
} |
| 124 |
} |
| 125 |
} |
| 126 |
return $before_content . $content . $after_content; |
| 127 |
} |
| 128 |
|
| 129 |
/** |
| 130 |
* Scripts/Styles |
| 131 |
*/ |
| 132 |
public function enqueue_scripts() |
| 133 |
{ |
| 134 |
global $pagenow ; |
| 135 |
// Load Scripts/Styles only WP Adminify Custom CSS/JS Page |
| 136 |
if ( 'admin.php' === $pagenow && 'adminify-custom-css-js' === $_GET['page'] ) { |
| 137 |
$this->header_footer_admin_script(); |
| 138 |
} |
| 139 |
} |
| 140 |
|
| 141 |
// WP Adminify Custom CSS/JS Page Style |
| 142 |
public function header_footer_admin_script() |
| 143 |
{ |
| 144 |
echo '<style>.wp-adminify-custom-css-js .adminify-container{ max-width:60%; margin:0 auto;} .wp-adminify-custom-css-js .adminify-header-inner{padding:0;}.wp-adminify-custom-css-js .adminify-field-subheading{font-size:20px; padding-left:0;}.adminify-custom-css-js .adminify-nav,.adminify-custom-css-js .adminify-search,.adminify-custom-css-js .adminify-footer,.adminify-custom-css-js .adminify-reset-all,.adminify-custom-css-js .adminify-expand-all,.adminify-custom-css-js .adminify-header-left,.adminify-custom-css-js .adminify-reset-section,.adminify-custom-css-js .adminify-nav-background{display: none !important;}.adminify-custom-css-js .adminify-nav-normal + .adminify-content{margin-left: 0;} |
| 145 |
|
| 146 |
/* If needed for white top-bar */ |
| 147 |
.adminify-custom-css-js .adminify-header-inner { |
| 148 |
background-color: #fafafa !important; |
| 149 |
border-bottom: 1px solid #f5f5f5; |
| 150 |
} |
| 151 |
</>' ; |
| 152 |
} |
| 153 |
|
| 154 |
} |