This is somewhat embarrassing, isn’t it?
It looks like nothing was found at this location. Maybe try a search?
/* Plugin Name: Z Index Global Ticker Description: Displays a scrolling ticker and index list of "The Original Z" prices around the world. Includes user submission form and admin panel. Version: 1.5 Author: Terphogz Dev Team */ function zogz_enqueue_ticker_assets() { wp_enqueue_style('zogz-ticker-style', false); wp_add_inline_style('zogz-ticker-style', ' .zogz-ticker { overflow: hidden; white-space: nowrap; box-sizing: border-box; background: black; color: lime; padding: 10px; font-family: monospace; font-size: 16px; position: relative; } .zogz-ticker-inner { display: inline-block; animation: ticker-scroll 25s linear infinite; padding-left: 100%; } @keyframes ticker-scroll { 0% { transform: translateX(0%); } 100% { transform: translateX(-100%); } } .zogz-ticker-item { margin-right: 3em; display: inline-block; } .zogz-index-list h3 { color: lime; font-family: monospace; } .zogz-index-list table { width: 100%; border-spacing: 0 10px; font-family: monospace; } .zogz-index-list th, .zogz-index-list td { padding: 5px 10px; text-align: left; } .zogz-green { color: lime; } .zogz-red { color: red; } .zogz-white { color: white; } '); wp_enqueue_script('jquery'); } add_action('wp_enqueue_scripts', 'zogz_enqueue_ticker_assets'); function zogz_get_price_data() { return get_option('zogz_ticker_data', [ 'CALI 3.5g' => ['price' => 50.00, 'grams' => 3.5, 'count' => 1], 'NYC 3.5g' => ['price' => 60.00, 'grams' => 3.5, 'count' => 1], 'UK 3.5g' => ['price' => 122.00, 'grams' => 3.5, 'count' => 1], 'BCN 3.5g' => ['price' => 105.00, 'grams' => 3.5, 'count' => 1], 'DE 3.5g' => ['price' => 117.00, 'grams' => 3.5, 'count' => 1], 'AUS 5g' => ['price' => 68.00, 'grams' => 5.0, 'count' => 1] ]); } function zogz_randomize_graph($base) { $graph = []; $last = $base; for ($i = 0; $i < 3; $i++) { $change = $last * (1 + (rand(-10, 10) / 100)); $graph[] = round($change, 2); $last = $change; } return $graph; } function zogz_render_index_list() { $flags = [ 'CALI 3.5g' => 'πΊπΈ', 'NYC 3.5g' => 'π½', 'UK 3.5g' => 'π¬π§', 'BCN 3.5g' => 'πͺπΈ', 'DE 3.5g' => 'π©πͺ', 'AUS 5g' => 'π¦πΊ' ]; $data = zogz_get_price_data(); $output = '
Localization | Currency | USD/CONV | USD per G |
---|---|---|---|
{$flag} {$label} | \${$price} | \${$usd_conv} | {$arrow} \${$usd_per_g} |
It looks like nothing was found at this location. Maybe try a search?
You must be 18 years of age or older to view page. Please verify your age to enter.
Your access is restricted because of your age.