# themify-builder/7.7.3/modules/module-menu.php

Themify Builder, version 7.7.3. 31 lines.

- Page: https://pluginprobe.com/plugins/themify-builder/7.7.3/code/modules/module-menu.php
- Raw: https://pluginprobe.com/plugins/themify-builder/7.7.3/raw/modules/module-menu.php
- Modified: 2026-05-23T07:50:20+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/themify-builder/7.7.3/code/modules/module-menu.php#L10-L20`.

```php
<?php

defined('ABSPATH') || exit;

/**
 * Module Name: Menu
 * Description: Display Custom Menu
 */
class TB_Menu_Module extends Themify_Builder_Component_Module {


    public static function get_module_name():string {
        return __('Menu', 'themify');
    }


    public static function get_module_icon():string {
        return 'view-list';
    }

    public static function get_js_css():array {
        return array(
            'css' => 1,
            'js' => 1
        );
    }

	public static function get_translatable_text_fields( $module ) : array {
		return [ 'mod_title_menu' ];
	}
}
```
