HEX
Server: Apache
System: Linux msm5694.mjhst.com 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
User: camjab_ssh (1000)
PHP: 5.3.29
Disabled: NONE
Upload Files
File: /home/httpd/html/barebackedtube.com/DEADS/wp-content/plugins/wordpress-seo/inc/class-widgets.php
<?php 

class WPSEO_Widgets {
	function WPSEO_Widgets() {
		$options = get_wpseo_options();
		
		if ( isset($options['replacemetawidget']) && $options['replacemetawidget'] == "on" ) {
			add_action( 'plugins_loaded', array(&$this, 'load_widgets'), 10 );
			add_action( 'widgets_init', array(&$this, 'widgets_init'), 99 );
		}	
	}
	
	function widgets_init() {
		unregister_widget('WP_Widget_Meta');
		register_widget('WPSEO_Widget_Meta');
	}	
	
	function load_widgets() {
		require WPSEO_PATH.'inc/class-meta-widget.php';
	}
}

$wpseo_widgets = new WPSEO_Widgets();