Plugin Directory

Changeset 1215401


Ignore:
Timestamp:
08/08/2015 06:42:20 AM (11 years ago)
Author:
froman118
Message:

PHP7 constructor update

Location:
my-category-order/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • my-category-order/trunk/mycategoryorder.php

    r534578 r1215401  
    44Plugin URI: http://www.geekyweekly.com/mycategoryorder
    55Description: My Category Order allows you to set the order in which categories will appear in the sidebar. Uses a drag and drop interface for ordering. Adds a widget with additional options for easy installation on widgetized themes.
    6 Version: 3.3.2
     6Version: 4.3
    77Author: Andrew Charlton
    88Author URI: http://www.geekyweekly.com
     
    256256class mycategoryorder_Widget extends WP_Widget {
    257257
    258     function mycategoryorder_Widget() {
     258    function __construct() {
    259259        $widget_ops = array('classname' => 'widget_mycategoryorder', 'description' => __( 'Enhanced Category widget provided by My Category Order') );
    260         $this->WP_Widget('mycategoryorder', __('My Category Order'), $widget_ops);  }
     260        parent::__construct('mycategoryorder', __('My Category Order'), $widget_ops);   }
    261261
    262262    function widget( $args, $instance ) {
  • my-category-order/trunk/readme.txt

    r534578 r1215401  
    44Tags: categories, category, order, sidebar, widget
    55Requires at least: 2.8
    6 Tested up to: 3.3.2
    7 Stable tag: 3.3.2
     6Tested up to: 4.3
     7Stable tag: 4.3
    88
    99My Category Order allows you to set the order in which categories will appear in the sidebar.
     
    2121
    2222== Change Log ==
     23= 4.3 =
     24* PHP7 constructor update
     25* Testing after long hiatus, still works!
    2326= 3.3.1 =
    2427* Added Danish translation
Note: See TracChangeset for help on using the changeset viewer.