Created
April 18, 2018 21:48
-
-
Save lots0logs/8c3f3188378d8ab65b92e28ce3bd09c4 to your computer and use it in GitHub Desktop.
Divi Builder :: Custom Module :: Declaring Full Compatibility
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class MYEX_HelloWorld extends ET_Builder_Module { | |
public $slug = 'myex_hello_world'; | |
public $vb_support = 'on'; | |
public function init() { | |
$this->name = esc_html__( 'Hello World', 'myex-my-extension' ); | |
} | |
... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment