Warning: chmod(): Operation not permitted in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8 [0] in function chmod in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8 [1] in function include_once in /var/www/hopeinstoughton_www/wp-settings.php on line 560 [2] in function require_once in /var/www/hopeinstoughton_www/wp-config.php on line 85 [3] in function require_once in /var/www/hopeinstoughton_www/wp-load.php on line 50 [4] in function require_once in /var/www/hopeinstoughton_www/wp-blog-header.php on line 13 [5] in function require in /var/www/hopeinstoughton_www/index.php on line 17
| Server IP : 94.177.8.99 / Your IP : 216.73.217.165 Web Server : Apache/2.4.58 (Ubuntu) System : Linux aries 6.8.0-134-generic #134-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 26 18:43:11 UTC 2026 x86_64 User : www-data ( 33) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/theyoungdesigners_com/storage/handlebars/ |
Upload File : |
<?php function lcr685463a23fd0aencq($cx, $var)
{
// Use full namespace classname for more specific code export/match in Exporter.php replaceSafeString.
if ($var instanceof LS) {
return (string)$var;
}
return str_replace(array('=', '`', '''), array('=', '`', '''), htmlspecialchars(lcr685463a23fd0araw($cx, $var), ENT_QUOTES, 'UTF-8'));
}
function lcr685463a23fd0asec($cx, $v, $bp, $in, $each, $cb, $else = null)
{
$push = ($in !== $v) || $each;
$isAry = is_array($v) || ($v instanceof \ArrayObject);
$isTrav = $v instanceof \Traversable;
$loop = $each;
$keys = null;
$last = null;
$isObj = false;
if ($isAry && $else !== null && count($v) === 0) {
return $else($cx, $in);
}
// #var, detect input type is object or not
if (!$loop && $isAry) {
$keys = array_keys($v);
$loop = (count(array_diff_key($v, array_keys($keys))) == 0);
$isObj = !$loop;
}
if (($loop && $isAry) || $isTrav) {
if ($each && !$isTrav) {
// Detect input type is object or not when never done once
if ($keys == null) {
$keys = array_keys($v);
$isObj = (count(array_diff_key($v, array_keys($keys))) > 0);
}
}
$ret = array();
if ($push) {
$cx['scopes'][] = $in;
}
$i = 0;
if ($cx['flags']['spvar']) {
$old_spvar = $cx['sp_vars'];
$cx['sp_vars'] = array_merge(array('root' => $old_spvar['root']), $old_spvar, array('_parent' => $old_spvar));
if (!$isTrav) {
$last = count($keys) - 1;
}
}
$isSparceArray = $isObj && (count(array_filter(array_keys($v), 'is_string')) == 0);
foreach ($v as $index => $raw) {
if ($cx['flags']['spvar']) {
$cx['sp_vars']['first'] = ($i === 0);
$cx['sp_vars']['last'] = ($i == $last);
$cx['sp_vars']['key'] = $index;
$cx['sp_vars']['index'] = $isSparceArray ? $index : $i;
$i++;
}
if (isset($bp[0])) {
$raw = lcr685463a23fd0am($cx, $raw, array($bp[0] => $raw));
}
if (isset($bp[1])) {
$raw = lcr685463a23fd0am($cx, $raw, array($bp[1] => $index));
}
$ret[] = $cb($cx, $raw);
}
if ($cx['flags']['spvar']) {
if ($isObj) {
unset($cx['sp_vars']['key']);
} else {
unset($cx['sp_vars']['last']);
}
unset($cx['sp_vars']['index']);
unset($cx['sp_vars']['first']);
$cx['sp_vars'] = $old_spvar;
}
if ($push) {
array_pop($cx['scopes']);
}
return join('', $ret);
}
if ($each) {
if ($else !== null) {
$ret = $else($cx, $v);
return $ret;
}
return '';
}
if ($isAry) {
if ($push) {
$cx['scopes'][] = $in;
}
$ret = $cb($cx, $v);
if ($push) {
array_pop($cx['scopes']);
}
return $ret;
}
if ($cx['flags']['mustsec']) {
return $v ? $cb($cx, $in) : '';
}
if ($v === true) {
return $cb($cx, $in);
}
if (($v !== null) && ($v !== false)) {
return $cb($cx, $v);
}
if ($else !== null) {
$ret = $else($cx, $in);
return $ret;
}
return '';
}
function lcr685463a23fd0aifvar($cx, $v, $zero)
{
return ($v !== null) && ($v !== false) && ($zero || ($v !== 0) && ($v !== 0.0)) && ($v !== '') && (is_array($v) ? (count($v) > 0) : true);
}
function lcr685463a23fd0araw($cx, $v, $ex = 0)
{
if ($ex) {
return $v;
}
if ($v === true) {
if ($cx['flags']['jstrue']) {
return 'true';
}
}
if (($v === false)) {
if ($cx['flags']['jstrue']) {
return 'false';
}
}
if (is_array($v)) {
if ($cx['flags']['jsobj']) {
if (count(array_diff_key($v, array_keys(array_keys($v)))) > 0) {
return '[object Object]';
} else {
$ret = array();
foreach ($v as $k => $vv) {
$ret[] = lcr685463a23fd0araw($cx, $vv);
}
return join(',', $ret);
}
} else {
return 'Array';
}
}
return "$v";
}
function lcr685463a23fd0awi($cx, $v, $bp, $in, $cb, $else = null)
{
if (isset($bp[0])) {
$v = lcr685463a23fd0am($cx, $v, array($bp[0] => $v));
}
if (($v === false) || ($v === null) || (is_array($v) && (count($v) === 0))) {
return $else ? $else($cx, $in) : '';
}
if ($v === $in) {
$ret = $cb($cx, $v);
} else {
$cx['scopes'][] = $in;
$ret = $cb($cx, $v);
array_pop($cx['scopes']);
}
return $ret;
}
function lcr685463a23fd0am($cx, $a, $b)
{
if (is_array($b)) {
if ($a === null) {
return $b;
} elseif (is_array($a)) {
return array_merge($a, $b);
} elseif ($cx['flags']['method'] || $cx['flags']['prop']) {
if (!is_object($a)) {
$a = new StringObject($a);
}
foreach ($b as $i => $v) {
$a->$i = $v;
}
}
}
return $a;
}
if (!class_exists("LS")) {
class LS {
public static $jsContext = array (
'flags' =>
array (
'jstrue' => 1,
'jsobj' => 1,
),
);
public function __construct($str, $escape = false)
{
$this->string = $escape ? (($escape === 'encq') ? static::encq(static::$jsContext, $str) : static::enc(static::$jsContext, $str)) : $str;
}
public function __toString()
{
return $this->string;
}
public static function stripExtendedComments($template)
{
return preg_replace(static::EXTENDED_COMMENT_SEARCH, '{{! }}', $template);
}
public static function escapeTemplate($template)
{
return addcslashes(addcslashes($template, '\\'), "'");
}
public static function raw($cx, $v, $ex = 0)
{
if ($ex) {
return $v;
}
if ($v === true) {
if ($cx['flags']['jstrue']) {
return 'true';
}
}
if (($v === false)) {
if ($cx['flags']['jstrue']) {
return 'false';
}
}
if (is_array($v)) {
if ($cx['flags']['jsobj']) {
if (count(array_diff_key($v, array_keys(array_keys($v)))) > 0) {
return '[object Object]';
} else {
$ret = array();
foreach ($v as $k => $vv) {
$ret[] = static::raw($cx, $vv);
}
return join(',', $ret);
}
} else {
return 'Array';
}
}
return "$v";
}
public static function enc($cx, $var)
{
return htmlspecialchars(static::raw($cx, $var), ENT_QUOTES, 'UTF-8');
}
public static function encq($cx, $var)
{
return str_replace(array('=', '`', '''), array('=', '`', '''), htmlspecialchars(static::raw($cx, $var), ENT_QUOTES, 'UTF-8'));
}
}
}
return function ($in = null, $options = null) {
$helpers = array();
$partials = array();
$cx = array(
'flags' => array(
'jstrue' => true,
'jsobj' => true,
'jslen' => true,
'spvar' => true,
'prop' => false,
'method' => false,
'lambda' => false,
'mustlok' => false,
'mustlam' => false,
'mustsec' => false,
'echo' => true,
'partnc' => false,
'knohlp' => false,
'debug' => isset($options['debug']) ? $options['debug'] : 1,
),
'constants' => array(
'DEBUG_ERROR_LOG' => 1,
'DEBUG_ERROR_EXCEPTION' => 2,
'DEBUG_TAGS' => 4,
'DEBUG_TAGS_ANSI' => 12,
'DEBUG_TAGS_HTML' => 20,
),
'helpers' => isset($options['helpers']) ? array_merge($helpers, $options['helpers']) : $helpers,
'partials' => isset($options['partials']) ? array_merge($partials, $options['partials']) : $partials,
'scopes' => array(),
'sp_vars' => isset($options['data']) ? array_merge(array('root' => $in), $options['data']) : array('root' => $in),
'blparam' => array(),
'partialid' => 0,
'runtime' => '\LightnCandy\Runtime',
);
$inary=is_array($in);
ob_start();echo '
<p>Thank you for shopping with us. We\'ll send a confirmation when your items ship.</p>
<div style="margin-bottom: 30px">
Order Number: <a href="',lcr685463a23fd0aencq($cx, (($inary && isset($in['hostname'])) ? $in['hostname'] : null)),'/account/order/',lcr685463a23fd0aencq($cx, (($inary && isset($in['ordernum'])) ? $in['ordernum'] : null)),'">',lcr685463a23fd0aencq($cx, (($inary && isset($in['ordernum'])) ? $in['ordernum'] : null)),'</a><br>
Date: ',lcr685463a23fd0aencq($cx, (($inary && isset($in['date'])) ? $in['date'] : null)),'
</div>
<div style="margin-bottom: 30px">
<h3>Items Ordered</h3>
<table class="ordered" cellspacing="0" cellpadding="0">
<tr><td colspan="2"></td><td class="amountcol right">Quantity</td><td class="right">Price</td></tr>
',lcr685463a23fd0asec($cx, (($inary && isset($in['cart'])) ? $in['cart'] : null), null, $in, true, function($cx, $in) {$inary=is_array($in);echo ' <tr>
<td><img src="',lcr685463a23fd0aencq($cx, (($inary && isset($in['thumb'])) ? $in['thumb'] : null)),'"></td>
<td>',lcr685463a23fd0aencq($cx, (($inary && isset($in['desc'])) ? $in['desc'] : null)),'
';if (lcr685463a23fd0aifvar($cx, (($inary && isset($in['opt_tyd'])) ? $in['opt_tyd'] : null), false)){echo '<div style="padding-bottom:15px;"><strong>',lcr685463a23fd0araw($cx, (($inary && isset($in['tyd_description'])) ? $in['tyd_description'] : null)),'</strong></div>';}else{echo '';}echo '<!-- [COL2] -->
</td>
<td class="amountcol right">',lcr685463a23fd0aencq($cx, (($inary && isset($in['quantity'])) ? $in['quantity'] : null)),'</td>
<td class="right">',lcr685463a23fd0aencq($cx, (($inary && isset($in['sell'])) ? $in['sell'] : null)),'</td>
</tr>
';}),'
';if (lcr685463a23fd0aifvar($cx, (($inary && isset($in['showtax'])) ? $in['showtax'] : null), false)){echo '';if (lcr685463a23fd0aifvar($cx, (($inary && isset($in['taxable'])) ? $in['taxable'] : null), false)){echo '';if (lcr685463a23fd0aifvar($cx, (($inary && isset($in['freightamt'])) ? $in['freightamt'] : null), false)){echo ' <tr><td></td><td colspan="2" class="amountcol right">Freight (',lcr685463a23fd0aencq($cx, ((isset($in['freight']) && is_array($in['freight']) && isset($in['freight']['caption'])) ? $in['freight']['caption'] : null)),')</td><td class="right">',lcr685463a23fd0aencq($cx, (($inary && isset($in['freightcharge'])) ? $in['freightcharge'] : null)),'</td></tr>
';}else{echo '';}echo ' <tr><td></td><td colspan="2" class="amountcol right">Tax</td><td class="right">',lcr685463a23fd0aencq($cx, (($inary && isset($in['tax'])) ? $in['tax'] : null)),'</td></tr>
';}else{echo ' <tr><td></td><td colspan="2" class="amountcol right">Tax</td><td class="right">',lcr685463a23fd0aencq($cx, (($inary && isset($in['tax'])) ? $in['tax'] : null)),'</td></tr>
';if (lcr685463a23fd0aifvar($cx, (($inary && isset($in['freightamt'])) ? $in['freightamt'] : null), false)){echo ' <tr><td></td><td colspan="2" class="amountcol right">Freight (',lcr685463a23fd0aencq($cx, ((isset($in['freight']) && is_array($in['freight']) && isset($in['freight']['caption'])) ? $in['freight']['caption'] : null)),')</td><td class="right">',lcr685463a23fd0aencq($cx, (($inary && isset($in['freightcharge'])) ? $in['freightcharge'] : null)),'</td></tr>
';}else{echo '';}echo '';}echo '';}else{echo '';if (lcr685463a23fd0aifvar($cx, (($inary && isset($in['freightamt'])) ? $in['freightamt'] : null), false)){echo ' <tr><td></td><td colspan="2" class="amountcol right">Freight (',lcr685463a23fd0aencq($cx, ((isset($in['freight']) && is_array($in['freight']) && isset($in['freight']['caption'])) ? $in['freight']['caption'] : null)),')</td><td class="right">',lcr685463a23fd0aencq($cx, (($inary && isset($in['freightcharge'])) ? $in['freightcharge'] : null)),'</td></tr>
';}else{echo '';}echo '';}echo ' <tr><td></td><td colspan="2" class="amountcol right">Total</td><td class="right bold">',lcr685463a23fd0aencq($cx, (($inary && isset($in['total'])) ? $in['total'] : null)),'</td></tr>
</table>
</div>
';if (lcr685463a23fd0aifvar($cx, (($inary && isset($in['address'])) ? $in['address'] : null), false)){echo '',lcr685463a23fd0awi($cx, (($inary && isset($in['address'])) ? $in['address'] : null), null, $in, function($cx, $in) {$inary=is_array($in);echo ' <div style="margin-bottom: 30px">
<h3>Shipping Address</h3>
<b>',lcr685463a23fd0aencq($cx, (($inary && isset($in['name'])) ? $in['name'] : null)),'</b><br>
',lcr685463a23fd0aencq($cx, (($inary && isset($in['del_a'])) ? $in['del_a'] : null)),'<br>
';if (lcr685463a23fd0aifvar($cx, (($inary && isset($in['addr2'])) ? $in['addr2'] : null), false)){echo '',lcr685463a23fd0aencq($cx, (($inary && isset($in['addr2'])) ? $in['addr2'] : null)),'<br>';}else{echo '';}echo '
',lcr685463a23fd0aencq($cx, (($inary && isset($in['town'])) ? $in['town'] : null)),' ',lcr685463a23fd0aencq($cx, (($inary && isset($in['state'])) ? $in['state'] : null)),' ',lcr685463a23fd0aencq($cx, (($inary && isset($in['zip'])) ? $in['zip'] : null)),'<br>
',lcr685463a23fd0aencq($cx, (($inary && isset($in['country_name'])) ? $in['country_name'] : null)),'
</div>
';}),'';}else{echo '';}echo '
';return ob_get_clean();
};