css
5 years ago
js
5 years ago
class-atomic-additional-css-manager.php
2 years ago
class-css-customizer-nudge.php
2 years ago
class-css-nudge-customize-control.php
2 years ago
class-wpcom-additional-css-manager.php
2 years ago
class-css-nudge-customize-control.php
31 lines
| 1 | <?php |
| 2 | /** |
| 3 | * CSS_Nudge_Customize_Control file. |
| 4 | * CSS Nudge implementation for Atomic and WPCOM. |
| 5 | * |
| 6 | * @deprecated 13.7 Use Automattic\Jetpack\Masterbar\CSS_Nudge_Customize_Control instead. |
| 7 | * |
| 8 | * @package Jetpack |
| 9 | */ |
| 10 | |
| 11 | namespace Automattic\Jetpack\Dashboard_Customizations; |
| 12 | |
| 13 | use Automattic\Jetpack\Masterbar\CSS_Nudge_Customize_Control as Masterbar_CSS_Nudge_Customize_Control; |
| 14 | |
| 15 | /** |
| 16 | * Class CSS_Nudge_Customize_Control |
| 17 | * |
| 18 | * @package Automattic\Jetpack\Dashboard_Customizations |
| 19 | */ |
| 20 | class CSS_Nudge_Customize_Control extends Masterbar_CSS_Nudge_Customize_Control { |
| 21 | /** |
| 22 | * Render the nudge on the page. |
| 23 | * |
| 24 | * @deprecated 13.7 |
| 25 | */ |
| 26 | public function render_content() { |
| 27 | _deprecated_function( __METHOD__, 'jetpack-13.7', 'Automattic\\Jetpack\\Masterbar\\CSS_Nudge_Customize_Control::render_content' ); |
| 28 | parent::render_content(); |
| 29 | } |
| 30 | } |
| 31 |