This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"name": "Money Options", | |
"settings": [ | |
{ | |
"type": "checkbox", | |
"id": "show_multiple_currencies", | |
"default": true, | |
"label": "Show currency selector?" | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<yahoo-weather-codes> | |
<code number="0" description="tornado"/> | |
<code number="1" description="tropical storm"/> | |
<code number="2" description="hurricane"/> | |
<code number="3" description="severe thunderstorms"/> | |
<code number="4" description="thunderstorms"/> | |
<code number="5" description="mixed rain and snow"/> | |
<code number="6" description="mixed rain and sleet"/> | |
<code number="7" description="mixed snow and sleet"/> | |
<code number="8" description="freezing drizzle"/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function generateHash() { | |
$email = $_SESSION['email']; | |
$first_name = $_SESSION['firstName']; | |
$last_name = $_SESSION['lastName']; | |
$security_group = "default"; | |
$company_key = "cust"; | |
$secret_key = "423d004c716839b4af16ef680cc742f2"; | |
$timestamp = (int)gmdate('U'); | |
$verify = md5($first_name . "|" . $last_name . "|" . $email . "|" . $company_key . "|" . $security_group . "|" . $timestamp . "|" . $secret_key); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$open_now = "<h3>Yes, we're open! Today's hours are %open% until %closed%.</h3>"; | |
$closed_now = "<h3>Sorry, we're closed. Today's hours are %open% until %closed%."; | |
$closed_all_day = "<h3>Sorry, we're closed on %day%.</h3>"; | |
$exception = "<h3>Sorry, we're closed for %exception%.</h3>"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$exceptions = array( | |
'Christmas' => '10/22', | |
'New Years Day' => '1/1' | |
); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$hours = array( | |
'mon' => array('11:00-20:30'), | |
'tue' => array('11:00-16:00', '18:00-20:30'), | |
'wed' => array('11:00-20:30'), | |
'thu' => array('11:00-20:30'), | |
'fri' => array('11:00-20:30'), | |
'sat' => array('11:00-20:30'), | |
'sun' => array('11:00-20:30') | |
); |
NewerOlder