Edit File by line

Deprecated: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in /home/sportsfever/public_html/filemanger/function.php on line 93
/home/sportsfe.../httpdocs/clone/wp-conte.../plugins/accelera.../pagebuil.../modules
File: button-module.php
<?php
[0] Fix | Delete
// Exit if accessed directly.
[1] Fix | Delete
if ( ! defined( 'ABSPATH' ) ) exit;
[2] Fix | Delete
$output = '<div class="amp_pb_module amp_btn {{css_class}}">
[3] Fix | Delete
<a href="{{button_link}}">{{button_txt}}</a></div>';
[4] Fix | Delete
return array(
[5] Fix | Delete
'label' =>'Button',
[6] Fix | Delete
'name' =>'button',
[7] Fix | Delete
'default_tab'=> 'customizer',
[8] Fix | Delete
'tabs' => array(
[9] Fix | Delete
'customizer'=>'Customizer',
[10] Fix | Delete
'container_css'=>'Container css'
[11] Fix | Delete
),
[12] Fix | Delete
'fields'=> array(
[13] Fix | Delete
array(
[14] Fix | Delete
'type' => 'text',
[15] Fix | Delete
'name' => 'button_txt',
[16] Fix | Delete
'label' => 'Button Text',
[17] Fix | Delete
'tab' => 'customizer',
[18] Fix | Delete
'default' => 'Click Here',
[19] Fix | Delete
'content_type'=>'html',
[20] Fix | Delete
),
[21] Fix | Delete
array(
[22] Fix | Delete
'type' => 'text',
[23] Fix | Delete
'name' => 'button_link',
[24] Fix | Delete
'label' => 'Button Link',
[25] Fix | Delete
'tab' =>'customizer',
[26] Fix | Delete
'default' => '#',
[27] Fix | Delete
'content_type'=>'html',
[28] Fix | Delete
),
[29] Fix | Delete
array(
[30] Fix | Delete
'type' => 'text',
[31] Fix | Delete
'name' => 'css_class',
[32] Fix | Delete
'label' => 'Custom CSS Class',
[33] Fix | Delete
'tab' =>'container_css',
[34] Fix | Delete
'default' => '',
[35] Fix | Delete
'content_type'=>'html',
[36] Fix | Delete
)
[37] Fix | Delete
[38] Fix | Delete
),
[39] Fix | Delete
'front_template'=>$output,
[40] Fix | Delete
'front_css'=>'',
[41] Fix | Delete
'front_common_css'=>'',
[42] Fix | Delete
);
[43] Fix | Delete
?>
[44] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function