Last active
April 18, 2018 21:49
-
-
Save lots0logs/3db0568a1c7f6de794fb89d82bd4c9ee to your computer and use it in GitHub Desktop.
Divi Builder :: Custom Module :: Declaring Partial 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 = 'partial'; | |
| 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