WP-CLI plugin install causes PHP fatal error – Using $this when not in object context

When running sudo wp install plugin pluginname –allowroot

It causes an error:

PHP Fatal error: Uncaught Error: Using $this when not in object context in /var/www/html/wp-content/plugins/pluginname/blocks.php:89

We have a custom plugin that has this line:

 class Block{ 
    public static function Run() {           
      add_action('enqueue_block_editor_assets',array($this,'RegisterBlock')); //complains on this line

When installing via WP admin – it works fine. But when using WP-CLI it fails.

Any help will be appreciated

Answers:

Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.

Method 1

public static function Run() {

The “static” here means this function doesn’t have an object context i.e. it’s intended to be called as Block::Run() without actually making a Block. That said, $block = new Block(); $block->Run(); will still work, but it still doesn’t have $this set inside the method.

Instead you can use the class name instead of $this to make a callable for a static method:

class Block{ 
    public static function Run() {           
      add_action('enqueue_block_editor_assets', array('Block', 'RegisterBlock') );

But I’ve no idea how the original code is working in wp-admin. Is it code definitely being called?


All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0

0 0 votes
Article Rating
Subscribe
Notify of
guest

0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x