Fix File
•
/
home
/
sportsfe...
/
public_h...
/
clone
/
wp-conte...
/
plugins
/
themify-...
/
modules
•
File:
module-login.php
•
Content:
<?php defined('ABSPATH') || exit; /** * Module Name: Login * Description: Displays login form */ class TB_Login_Module extends Themify_Builder_Component_Module { public static function get_module_name():string { return __('Login', 'themify'); } public static function get_module_icon():string { return 'unlock'; } public static function get_js_css():array { $_arr = array( 'css' => 1 ); if (!Themify_Builder_Model::is_front_builder_activate()) { $_arr['js'] = 1; } return $_arr; } /** * Render plain content for static content. * * @param array $module * @return string */ public static function get_static_content(array $module):string { return sprintf( __( '<a href="%s" target="_blank">Click here to Login</a>', 'themify' ), esc_url( wp_login_url() ) ); } public static function get_styling_image_fields() : array { return [ 'b_i' => '' ]; } public static function get_translatable_text_fields( $module ) : array { return [ 'mod_title', 'label_username', 'label_password', 'label_remember', 'label_log_in', 'label_forgotten_password', 'lostpasswordform_label_username', 'lostpasswordform_label_reset' ]; } public static function get_translatable_textarea_fields( $module ) : array { return [ 'content_text', 'msg_fail' ]; } public static function get_translatable_link_fields( $module ) : array { return [ 'redirect_to', 'redirect_fail', 'lostpasswordform_redirect_to' ]; } }
•
Search:
•
Replace:
Function
Edit by line
Download
Information
Rename
Copy
Move
Delete
Chmod
List