/
home
/
techb158
/
balacoffee.com
/
wp-content
/
themes
/
Divi
/
core
/
components
/
data
/
/home/techb158/balacoffee.com/wp-content/themes/Divi/core/components/data
mkdir
upload
Name
Size
Mode
Actions
init.php
10752
0644
edit
dl
rm
ScriptReplacer.php
395
0644
edit
dl
rm
Utils.php
29857
0644
edit
dl
rm
Edit:
/home/techb158/balacoffee.com/wp-content/themes/Divi/core/components/data/ScriptReplacer.php
(395B)
<?php /** * Utility class for replacing scripts in a string. * * @since 3.18.5 * * @package ET\Core\Data */ class ET_Core_Data_ScriptReplacer { private $_map = array(); public function replace( $matches ) { $script = $matches[0]; $id = md5( $script ); $this->_map[ $id ] = $script; return $id; } public function map() { return $this->_map; } }
Save
_map[ $id ] = $script; return $id; } public function map() { return $this->_map; } }