Sid Gifari File Manager
🏠 Root
/
home2
/
iuywvcmy
/
public_html
/
argonautisbc
/
wp-content
/
plugins
/
bluehost-wordpress-plugin
/
inc
/
widgets
/
Editing: SitePreview.php
<?php /** * Site Preview Widget. * * @package WPPluginBluehost */ namespace Bluehost; /** * \Bluehost\BluehostSitePreviewWidget * * Adds a SitePreview dashboard widget to the WordPress dashboard. This widget integrates with coming soon module. */ class BluehostSitePreviewWidget { /** * The id of this widget. */ const ID = 'site_preview_widget'; /** * Constructor */ public function __construct() { // Register the widget \add_action( 'wp_dashboard_setup', array( __CLASS__, 'init' ), 1 ); } /** * Hook to wp_dashboard_setup to add the widget. */ public static function init() { // Register the widget \wp_add_dashboard_widget( self::ID, __( 'Site Preview', 'wp-plugin-bluehost' ), array( __CLASS__, 'widget_render' ), null, null, 'normal', 'high' ); \add_action( 'admin_enqueue_scripts', array( __CLASS__, 'assets' ) ); } /** * Render the widget */ public static function widget_render() { $view_file = BLUEHOST_PLUGIN_DIR . '/inc/widgets/views/site-preview.php'; include $view_file; } /** * Load scripts/styles needed for this dashboard widget. * * @return void */ public static function assets() { // enqueue the bluehost-style stylesheet // this is registered in Admin.php > assets() \wp_enqueue_style( 'bluehost-style' ); } }
Save
Cancel