PluginProbe
Woody Code Snippets – Insert PHP, CSS, JS, and Header/Footer Scripts / 2.7.1
Woody Code Snippets – Insert PHP, CSS, JS, and Header/Footer Scripts v2.7.1
2.7.7 2.7.6 2.7.5 2.7.4 trunk 1.3 2.0.4 2.0.6 2.1.91 2.2.4 2.2.7 2.2.9 2.3.1 2.3.10 2.4.10 2.4.2 2.4.4 2.4.5 2.4.6 2.4.7 2.4.8 2.4.9 2.6.0 2.6.1 2.7.0 All 28 releases
← All changes | includes/shortcodes/shortcode-js.php +15 -12 2.4.42.7.1 View file →
@@ -19,12 +19,13 @@
19 19 * @param string $content
20 20 * @param string $tag
21 21 */
22 22 public function html( $attr, $content, $tag ) {
23 - $id = $this->getSnippetId( $attr, WINP_SNIPPET_TYPE_JS );
23 + $id = $this->get_snippet_id( $attr, WINP_SNIPPET_TYPE_JS );
24 24
25 25 if ( ! $id ) {
26 - echo '<span style="color:red">' . __( '[' . esc_html( $tag ) . ']: PHP snippets error (not passed the snippet ID)', 'insert-php' ) . '</span>';
26 + /* translators: %s: Shortcode tag name */
27 + echo '<span style="color:red">' . sprintf( esc_html__( '[%s]: PHP snippets error (not passed the snippet ID)', 'insert-php' ), esc_html( $tag ) ) . '</span>';
27 28
28 29 return;
29 30 }
30 31
@@ -34,28 +35,30 @@
34 35 if ( ! $snippet || empty( $snippet_meta ) ) {
35 36 return;
36 37 }
37 38
38 - $attrs = $this->filterAttributes( $attr, $id );
39 + $attrs = $this->filter_attributes( $attr, $id );
39 40
40 41 // Let users pass arbitrary variables, through shortcode attributes.
41 42 // @since 2.4.0
42 - $vars = "";
43 + $vars = '';
43 44 foreach ( $attrs as $var => $value ) {
44 - $vars .= PHP_EOL."var {$var} = \"{$value}\";";
45 + $vars .= PHP_EOL . "var {$var} = \"{$value}\";";
45 46 }
46 47
47 48
48 - $is_activate = $this->getSnippetActivate( $snippet_meta );
49 - $snippet_content = $this->getSnippetContent( $snippet, $snippet_meta, $id );
50 - $snippet_scope = $this->getSnippetScope( $snippet_meta );
51 - $is_condition = WINP_Plugin::app()->getExecuteObject()->checkCondition( $id );
49 + $is_activate = $this->get_snippet_activate( $snippet_meta );
50 + $snippet_content = $this->get_snippet_content( $snippet, $snippet_meta, $id );
51 + $snippet_scope = $this->get_snippet_scope( $snippet_meta );
52 + $is_condition = WINP_Plugin::app()->get_execute_object()->checkCondition( $id );
52 53
53 54 if ( ! $is_activate || empty( $snippet_content ) || $snippet_scope != 'shortcode' || ! $is_condition ) {
54 55 return;
55 56 }
56 57
57 - echo "<script type='text/javascript'>{$vars}</script>"; //print attributes
58 + // Track shortcode execution.
59 + WINP_Plugin::app()->get_execute_object()->track_shortcode_snippet( $id );
60 +
61 + echo "<script type='text/javascript'>{$vars}</script>"; // print attributes
58 62 echo WINP_Execute_Snippet::getJsCssSnippetData( $id );
59 63 }
60 -
61 -}
64 +}