PluginProbe
MotoPress Hotel Booking for Divi / trunk
MotoPress Hotel Booking for Divi vtrunk
trunk 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.1.0 2.0.0
mphb-divi / divi-4 / includes / modules / accommodation / content / content.php

content.php in MotoPress Hotel Booking for Divi trunk, at divi-4/includes/modules/accommodation/content/content.php

17 lines 437 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 class MPHB_Divi_Accommodation_Type_Content_Module extends MPHB_Divi_Abstract_Accommodation_Module {
4
5 public $slug = 'mphb-divi-accommodation-type-content';
6
7 public function init() {
8 $this->name = esc_html__( 'HB Acc. Type Content', 'mphb-divi' );
9 }
10
11 public static function get_html( $attrs = array() ) {
12 return MPHB_Divi_Renderers::accommodation_content( $attrs );
13 }
14 }
15
16 new MPHB_Divi_Accommodation_Type_Content_Module();
17