| Current Path : /home/xbodynamge/namtation/wp-content/ |
| Current File : /home/xbodynamge/namtation/wp-content/class-themeisle-content-forms-beaver-registration.php.tar |
vendor/codeinwp/themeisle-content-forms/beaver/class-themeisle-content-forms-beaver-registration.php0000644 00000001202 15115622120 0043522 0 ustar 00 home/xbodynamge/dev/wp-content/plugins/themeisle-companion <?php
namespace ThemeIsle\ContentForms;
class BeaverModuleRegistration extends BeaverModule {
/**
* Define the form type
* @return string
*/
public function get_type() {
return 'registration';
}
public function __construct( $data = array(), $args = null ) {
parent::__construct(
array(
'name' => esc_html__( 'Registration', 'themeisle-companion' ),
'description' => esc_html__( 'A sign up form.', 'themeisle-companion' ),
'category' => esc_html__( 'Orbit Fox Modules', 'themeisle-companion' ),
'dir' => dirname( __FILE__ ),
'url' => plugin_dir_url( __FILE__ )
)
);
}
}