<?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' );
}
public function get_fields() {
return array();
}
public function render( $attrs, $content = null, $function_name ) {
}
}
new MYEX_HelloWorld;