PATH:
home
/
lab2454c
/
sothebankuab.com
/
wp-content
/
plugins
/
jetpack
/
modules
/
masterbar
/
nudges
/
additional-css
<?php /** * WPCOM_Additional_CSS_Manager file * * Is responsible with registering the Additional CSS section in WPCOM. * * @package Jetpack */ namespace Automattic\Jetpack\Dashboard_Customizations; /** * Class WPCOM_Disable_Additional_CSS * * @package Automattic\Jetpack\Dashboard_Customizations */ class WPCOM_Additional_CSS_Manager { /** * The site domain. * * @var string */ private $domain; /** * WPCOM_Additional_CSS_Manager constructor. * * @param string $domain the Site domain. */ public function __construct( $domain ) { $this->domain = $domain; } /** * Register the Additional CSS nudge. * * @param \WP_Customize_Manager $wp_customize_manager The core customize manager. */ public function register_nudge( \WP_Customize_Manager $wp_customize_manager ) { $nudge = new CSS_Customizer_Nudge( $this->get_nudge_url(), __( 'Purchase a Premium Plan to<br> activate CSS customization', 'jetpack' ), 'jetpack_custom_css' ); $nudge->customize_register_nudge( $wp_customize_manager ); } /** * Get the nudge URL in WPCOM. * * @return string */ private function get_nudge_url() { return '/checkout/' . $this->domain . '/premium'; } }
[+]
js
[+]
..
[-] class-wpcom-additional-css-manager.php
[edit]
[-] class-css-nudge-customize-control.php
[edit]
[-] class-atomic-additional-css-manager.php
[edit]
[-] class-css-customizer-nudge.php
[edit]
[+]
css