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

Themify Builder, version 7.7.3. 34 lines.

- Page: https://pluginprobe.com/plugins/themify-builder/7.7.3/code/modules/module-text.php
- Raw: https://pluginprobe.com/plugins/themify-builder/7.7.3/raw/modules/module-text.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-text.php#L10-L20`.

```php
<?php
defined('ABSPATH') || exit;

/**
 * Module Name: Text
 * Description: Display text content
 */
class TB_Text_Module extends Themify_Builder_Component_Module {

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

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

    public static function get_styling_image_fields() : array {
        return [
            'background_image' => ''
        ];
    }

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

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