wp/wp-content/themes/IN-MOTION-package-u1/in-motion/functions/widget-Flickr.php
changeset 16 a86126ab1dd4
parent 0 d970ebf37754
equal deleted inserted replaced
15:3d4e9c994f10 16:a86126ab1dd4
    15 
    15 
    16 /*-----------------------------------------------------------------------------------*/
    16 /*-----------------------------------------------------------------------------------*/
    17 /*	Widget Setup
    17 /*	Widget Setup
    18 /*-----------------------------------------------------------------------------------*/
    18 /*-----------------------------------------------------------------------------------*/
    19 	
    19 	
    20 function flickr_Widget() {
    20 function __construct() {
    21 
    21 
    22 	$widget_options = array(
    22 	$widget_options = array(
    23 		'classname' => 'flickr_widget',
    23 		'classname' => 'flickr_widget',
    24 		'description' => 'Custom Flickr widget.');
    24 		'description' => 'Custom Flickr widget.');
    25 
    25 
    27 		'width' => 200,
    27 		'width' => 200,
    28 		'height' => 400,
    28 		'height' => 400,
    29 		'id_base' => 'flickr_widget'
    29 		'id_base' => 'flickr_widget'
    30 	);
    30 	);
    31 
    31 
    32 	$this->WP_Widget( 'flickr_widget', 'Flickr Widget', $widget_options, $control_options );
    32 	parent::__construct( 'flickr_widget', 'Flickr Widget', $widget_options, $control_options );
    33 	
    33 	
    34 }
    34 }
    35 
    35 
    36 
    36 
    37 
    37