| 1 |
<?php |
| 2 |
/** |
| 3 |
* Universal Shortcode |
| 4 |
*/ |
| 5 |
|
| 6 |
// Exit if accessed directly |
| 7 |
if ( ! defined( 'ABSPATH' ) ) { |
| 8 |
exit; |
| 9 |
} |
| 10 |
|
| 11 |
class WINP_SnippetShortcodeJs extends WINP_SnippetShortcode { |
| 12 |
|
| 13 |
public $shortcode_name = 'wbcr_js_snippet'; |
| 14 |
|
| 15 |
/** |
| 16 |
* Content render |
| 17 |
* |
| 18 |
* @param array $attr |
| 19 |
* @param string $content |
| 20 |
* @param string $tag |
| 21 |
*/ |
| 22 |
public function html( $attr, $content, $tag ) { |
| 23 |
$id = $this->getSnippetId( $attr, WINP_SNIPPET_TYPE_JS ); |
| 24 |
|
| 25 |
if ( ! $id ) { |
| 26 |
echo '<span style="color:red">' . __( '[' . esc_html( $tag ) . ']: PHP snippets error (not passed the snippet ID)', 'insert-php' ) . '</span>'; |
| 27 |
|
| 28 |
return; |
| 29 |
} |
| 30 |
|
| 31 |
$snippet = get_post( $id ); |
| 32 |
$snippet_meta = get_post_meta( $id, '' ); |
| 33 |
|
| 34 |
if ( ! $snippet || empty( $snippet_meta ) ) { |
| 35 |
return; |
| 36 |
} |
| 37 |
|
| 38 |
$attrs = $this->filterAttributes( $attr, $id ); |
| 39 |
|
| 40 |
// Let users pass arbitrary variables, through shortcode attributes. |
| 41 |
// @since 2.4.0 |
| 42 |
$vars = ""; |
| 43 |
foreach ( $attrs as $var => $value ) { |
| 44 |
$vars .= PHP_EOL."var {$var} = \"{$value}\";"; |
| 45 |
} |
| 46 |
|
| 47 |
|
| 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 ); |
| 52 |
|
| 53 |
if ( ! $is_activate || empty( $snippet_content ) || $snippet_scope != 'shortcode' || ! $is_condition ) { |
| 54 |
return; |
| 55 |
} |
| 56 |
|
| 57 |
echo "<script type='text/javascript'>{$vars}</script>"; //print attributes |
| 58 |
echo WINP_Execute_Snippet::getJsCssSnippetData( $id ); |
| 59 |
} |
| 60 |
|
| 61 |
} |