| Current Path : /home/x/b/o/xbodynamge/namtation/wp-content/ |
| Current File : /home/x/b/o/xbodynamge/namtation/wp-content/class-themeisle-content-forms-beaver-contact.php.tar |
vendor/codeinwp/themeisle-content-forms/beaver/class-themeisle-content-forms-beaver-contact.php 0000644 00000001125 15115655002 0042454 0 ustar 00 home/xbodynamge/dev/wp-content/plugins/themeisle-companion <?php
namespace ThemeIsle\ContentForms;
class BeaverModuleContact extends BeaverModule {
/**
* Define the form type
* @return string
*/
public function get_type() {
return 'contact';
}
public function __construct() {
parent::__construct(
array(
'name' => esc_html__( 'Contact', 'themeisle-companion' ),
'description' => esc_html__( 'A contact form.', 'themeisle-companion' ),
'category' => esc_html__( 'Orbit Fox Modules', 'themeisle-companion' ),
'dir' => dirname( __FILE__ ),
'url' => plugin_dir_url( __FILE__ )
)
);
}
}