Edit File by line
/home/zeestwma/ceyloniy.../wp-conte.../plugins/wpforms-.../src/Integrat.../Divi/Interfac...
File: LocalizedDataInterface.php
<?php
[0] Fix | Delete
[1] Fix | Delete
namespace WPForms\Integrations\Divi\Interfaces;
[2] Fix | Delete
[3] Fix | Delete
/**
[4] Fix | Delete
* Interface for managing localized data for Divi modules.
[5] Fix | Delete
*
[6] Fix | Delete
* @since 1.9.9
[7] Fix | Delete
*/
[8] Fix | Delete
interface LocalizedDataInterface {
[9] Fix | Delete
[10] Fix | Delete
/**
[11] Fix | Delete
* Get the localized data.
[12] Fix | Delete
*
[13] Fix | Delete
* @since 1.9.9
[14] Fix | Delete
*
[15] Fix | Delete
* @return array Localized data array.
[16] Fix | Delete
*/
[17] Fix | Delete
public function get_localized_data(): array;
[18] Fix | Delete
[19] Fix | Delete
/**
[20] Fix | Delete
* Set the localized data.
[21] Fix | Delete
*
[22] Fix | Delete
* @since 1.9.9
[23] Fix | Delete
*
[24] Fix | Delete
* @param array $script_data Localized data to set.
[25] Fix | Delete
*
[26] Fix | Delete
* @return self Returns the instance for method chaining.
[27] Fix | Delete
*/
[28] Fix | Delete
public function set_localized_data( array $script_data ): object;
[29] Fix | Delete
}
[30] Fix | Delete
[31] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function