| @@ -65,12 +65,15 @@ | ||
| 65 | 65 | echo '<div id="'.$container.'"></div>'; |
| 66 | 66 | } |
| 67 | 67 | |
| 68 | 68 | //widget content |
| 69 | - $script2_content = str_replace('{{WIDGET_ID}}', $widget_id, file_get_contents($this->plugin_directory.'js/script2.js')); | |
| 70 | - $script2_content = str_replace('{{CONTAINER}}', $container, $script2_content); | |
| 71 | - $script2_content = str_replace('{{PLACEMENT}}', $placement, $script2_content); | |
| 72 | - echo '<script type="text/javascript">'.$script2_content.'</script>'; | |
| 69 | + $stringParams = array( | |
| 70 | + "{{WIDGET_ID}}" => $widget_id, | |
| 71 | + "{{CONTAINER}}" => $container, | |
| 72 | + "{{PLACEMENT}}" => $placement | |
| 73 | + ); | |
| 74 | + $widgetInjectionScript_content = str_replace(array_keys($stringParams), array_values($stringParams), file_get_contents($this->plugin_directory.'js/widgetInjectionScript.js')); | |
| 75 | + echo '<script type="text/javascript">'.$widgetInjectionScript_content.'</script>'; | |
| 73 | 76 | |
| 74 | 77 | echo $after_widget; |
| 75 | 78 | } |
| 76 | 79 | |