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

Posted by sombe on Stack Overflow See other posts from Stack Overflow or by sombe
Published on 2010-06-09T14:59:12Z Indexed on 2010/06/09 15:02 UTC
Read the original article Hit count: 166

Filed under:
|
|

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?

© Stack Overflow or respective owner

Related posts about Wordpress

Related posts about class