| 1 |
<?php |
| 2 |
|
| 3 |
defined( 'ABSPATH' ) || exit; |
| 4 |
|
| 5 |
/** |
| 6 |
* Module Name: Page break |
| 7 |
* Description: Page breaker and pagination |
| 8 |
*/ |
| 9 |
class TB_Page_Break_Module extends Themify_Builder_Component_Module { |
| 10 |
|
| 11 |
|
| 12 |
public static function get_module_name():string{ |
| 13 |
return __('Page Break', 'themify'); |
| 14 |
} |
| 15 |
|
| 16 |
public static function get_module_icon():string{ |
| 17 |
return '-1'; |
| 18 |
} |
| 19 |
|
| 20 |
public static function get_static_content(array $module):string { |
| 21 |
return ''; // no static content for dynamic content |
| 22 |
} |
| 23 |
} |
| 24 |
|