Hello i would like to ask: How to call static function from constructor in same class PHP?
I have got:
public function __construct()
And I need to call this function
private function _regenerateThumbnails($type = 'all', $deleteOldImages = false)
in constructor.
Is it possible in PHP and if yes, how?
Thanks for any advice.