-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathhow-to-order.php
executable file
·141 lines (124 loc) · 4.33 KB
/
how-to-order.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<?php
include_once('jcart/jcart.php');
require("admin/bootstrap.php");
include( dirname(__FILE__) . SYSPATH_LANG );
defined('SYSPATH_ADMIN') or die('No direct script access.');
?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="scripts/jquery.min.js"></script>
<script type="text/javascript" src="scripts/jquery.curvycorners.min.js"></script>
<link href="stylesheet/stylesheet.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="scripts/jquery-ui-1.8.4.custom.min.js"></script>
<link href="scripts/jqueryui/css/redmond/jquery-ui-1.8.4.custom.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="scripts/thickbox.js"></script>
<link href="scripts/thickbox.css" rel="stylesheet" type="text/css" />
<link rel="SHORTCUT ICON" href="favicon2.ico" />
<script>
$(function() {
flag = 0;
$("a.header").each(function() {
loc = window.location.href;
url = $(this).attr("href");
if (loc.indexOf(url) > -1) {
if (loc[loc.length-1]=="como-pedir.php") {
if (url=="como-pedir.php")
$(this).css("color", "yellow");
}
else if (url!="como-pedir.php") {
$(this).css("color", "yellow");
}
else {
$(this).css("color", "yellow");
}
}
});
});
</script>
<title><?=TITLE_INDEX;?></title>
<meta name="description" content="">
<meta name="keywords" content="food delivery,food delivery services,online food delivery,lunch delivery,dinner delivery,food,delivery">
</head>
<!-- header -->
<?php require("_header.inc.php"); ?>
<!-- header -->
<body>
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/all.js#xfbml=1";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
</script>
<script>
$(function() {
if ($(window).width() < 1100) {
$("#table990").css("padding-right", "60px");
}
});
</script>
<?php $comp_data = GenericSql::getEmpresa(); ?>
<div style="height:0px; overflow:hidden;"></div>
<table width="995" border="0" cellpadding="0" cellspacing="0" align="center" id="table990" class="table bg">
<tr>
<td width="643" id="left_column" valign="top">
<div id="ordering_is_easy">
<div class="round_bar" style="background-color:#000; font-size:18px; font-weight:bold; color:#FFF;"> <?php echo LBL_ORDER_EASY; ?> </div>
<div style="height:7px; overflow:hidden;"></div>
<div style="height:11px; overflow:hidden;"></div>
<table width="100%" border="0" cellpadding="0" style="background:url(images/step1b.jpg) repeat;">
<tr>
<td style="font-size:42px; font-weight:bold; padding-left:10px; color:#999;" height="60" width="15%" valign="middle"></td>
<td style="font-size:16px; font-weight:bold; line-height:18px;" valign="middle">
<?php //echo LBL_HOWTO_STEP_1; ?> <?php echo html_entity_decode($comp_data['frontend1']); ?>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<div style="background-color:#dcdcdc; height:1px; overflow:hidden; width:995px; margin-top:20px; margin-bottom:10px;" class="table bg"></div>
</td>
</tr>
</table>
<script>
$(function() {
settings = {
tl: { radius: 10 },
tr: { radius: 10 },
bl: { radius: 10 },
br: { radius: 10 },
antiAlias: true,
autoPad: true
}
$(".round_bar")
.css("padding-top", "10px")
.css("padding-bottom", "10px")
.css("padding-left", "10px")
.css("padding-right", "10px")
.corner(settings);
});
</script>
<script>
$(function(){
settings = {
tl: { radius: 15 },
tr: { radius: 15 },
bl: { radius: 15 },
br: { radius: 15 },
antiAlias: true,
autoPad: true
}
$('.round_corner').corner(settings);
$("#index_ordering_is_easy").height($("#ordering_is_easy").height());
});
</script>
<!-- footer -->
<?php require("_footer.inc.php"); ?>
<!-- footer -->
</body>
</html>