# wp-coder/2.5.4/public/shortcode.php

WP Coder – Insert &amp; Manage Code Snippets, version 2.5.4. 98 lines.

- Page: https://pluginprobe.com/plugins/wp-coder/2.5.4/code/public/shortcode.php
- Raw: https://pluginprobe.com/plugins/wp-coder/2.5.4/raw/public/shortcode.php
- Modified: 2023-01-10T08:28:54+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/wp-coder/2.5.4/code/public/shortcode.php#L10-L20`.

```php
<?php
/**
 * Shortcode
 *
 * @package     Wow_Plugin
 * @copyright   Copyright (c) 2018, Dmytro Lobov
 * @license     http://opensource.org/licenses/gpl-2.0.php GNU Public License
 * @since       1.0
 */

namespace wpcoder;

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

extract( shortcode_atts( array( 'id' => "", 'title' => '', ), $atts ) );

if ( ! empty( $atts['id'] ) ) {
	$id = absint( $atts['id'] );
}

global $wpdb;
$table = $wpdb->prefix . 'wow_' . $this->plugin_pref;
if ( ! empty( $id ) ) {
	$sSQL = $wpdb->prepare( "select * from $table WHERE id = %d", $id );
} elseif ( ! empty( $atts['title'] ) ) {
	$sSQL = $wpdb->prepare( "select * from $table WHERE title = %s", $atts['title'] );
} else {
	return false;
}
$result = $wpdb->get_results( $sSQL );
if ( count( $result ) > 0 ) {
	foreach ( $result as $key => $val ) {
		$param       = unserialize( $val->param );
		$content     = do_shortcode( $param['content_html'] );
		$path_style  = $this->basedir . 'style-' . $val->id . '.css';
		$path_script = $this->basedir . 'script-' . $val->id . '.js';
		$file_style  = $this->plugin_dir . 'admin/partials/generator/style.php';
		$file_script = $this->plugin_dir . 'admin/partials/generator/script.php';
		if ( file_exists( $file_style ) && ! file_exists( $path_style ) ) {
			ob_start();
			include( $file_style );
			$content_style = ob_get_contents();
			ob_end_clean();
			file_put_contents( $path_style, $content_style );
		}
		if ( file_exists( $file_script ) && ! file_exists( $path_script ) ) {
			ob_start();
			include( $file_script );
			$content_script = ob_get_contents();
			$script_packer  = __NAMESPACE__ . '\\JavaScriptPacker';
			$packer         = new $script_packer( $content_script, 'Normal', true, false );
			$packed         = $packer->pack();
			ob_end_clean();
			file_put_contents( $path_script, $packed );
		}

		$user = apply_filters( 'wp_coder_pro_users', $param );
		if ( $user == false ) {
			return false;
		}

		$device = apply_filters( 'wp_coder_pro_devices', $param );
		if ( $device == false ) {
			return false;
		}

		$lang = apply_filters( 'wp_coder_pro_language', $param );
		if ( $lang == false ) {
			return false;
		}

		echo $content;
		$time = ! empty( $param['time'] ) ? $param['time'] : '';

		$count_include = ! empty( $param['include'] ) ? count( $param['include'] ) : 0;
		if ( $count_include > 0 ) {
			for ( $i = 0; $i < $count_include; $i ++ ) {
				if ( $param['include'][ $i ] == 'css' && ! empty( $param['include_file'][ $i ] ) ) {
					wp_enqueue_style( $this->plugin_slug . '-' . $val->id . '-css-' . $i, $param['include_file'][ $i ], array(), $this->plugin_version );
				} elseif ( $param['include'][ $i ] == 'js' && ! empty( $param['include_file'][ $i ] ) ) {
					wp_enqueue_script( $this->plugin_slug . '-' . $val->id . '-js-' . $i, $param['include_file'][ $i ], array( 'jquery' ), $this->plugin_version );
				}
			}
		}

		if ( file_exists( $path_style ) && ! empty( $param['content_css'] ) ) {
			wp_enqueue_style( $this->plugin_slug . '-style-' . $val->id, $this->baseurl . 'style-' . $val->id . '.css', array(), $time );
		}
		if ( file_exists( $path_script ) && ! empty( $param['content_js'] ) ) {
			wp_enqueue_script( $this->plugin_slug . '-script-' . $val->id, $this->baseurl . 'script-' . $val->id . '.js', array( 'jquery' ), $time );
		}

	}
}

return;
```
