Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

PHP: Class extends problem "Call to private method ... from context ..."

I have 3 classes in WordPress (the question itself is unrelated to it):

class WP_Widget

class Theme_Widget extends WP_Widget

class Specific_Widget extends Theme_Widget

Essentially Theme_Widget contains some extension functions to the basic WP_Widget.

Inside Specific_Widget I call one of Theme_Widget's methods:

class Specific_Widget {

    function __construct() {
         $this->some_method_that_belongs_to_Theme_Widget();
    }
}

When I instantiate Specific_Widget, PHP throws a fatal error as follows:

Fatal error: Call to private method Theme_Widget::some_method_that_belongs_to_Theme_Widget() from context 'Specific_Widget' in ...

Do you have an idea as to how I can resolve this? This is the first time I've received this error from PHP. Could it be derive from WordPress itself?

like image 357
Gal Avatar asked Jun 09 '10 14:06

Gal


1 Answers

You must declare your method protected, rather than private, if you wish child classes to be able to use it.

like image 154
TheDeadMedic Avatar answered Oct 14 '22 17:10

TheDeadMedic