-
Notifications
You must be signed in to change notification settings - Fork 0
/
funciones.inc
369 lines (343 loc) · 12.3 KB
/
funciones.inc
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
<?php
include 'outputHead.inc';
class funciones extends outputHead{
var $getTitle ;
var $getDescription;
var $getPalabrasClave;
var $imagenes_cabecera = array("tarot-videncia.jpg", "tarot-La-luna.jpg", "tarot-El-mundo.jpg",
"tarot-mitologico.jpg", "tarot-Los-cristales.jpg");
var $imagenes_enlaces = array("tarot-vida-4.jpg", "tarot-vida-5.jpg");
var $titulos = array("Oráculo del tarot" => "tarot.php",
"Oráculo de la baraja española" => "cartasEspanolas.php");
var $paginaTexto;
function setTitle($nuevoTitulo){
$this->getTitle = $nuevoTitulo;
}
function setDescription($nuevaDescripcion){
$this->getDescription = $nuevaDescripcion;
}
function setKeywords($nuevaPalabrasClave){
$this->getPalabrasClave = $nuevaPalabrasClave;
}
function setPaginaTexto($nuevoTexto){
$this->paginaTexto = $nuevoTexto;
}
function doHtmlHead($title, $description, $palabrasClave){
$this->title($title);
$this->charset();
$this->description($description);
$this->author();
$this->palabrasClave($palabrasClave);
$this->viewport();
$this->pages_css();
$this->prefix();
$this->favicon();
$this->angular();
}
function doHtmlHeader($title, $description, $palabrasClave){
?>
<!DOCTYPE html>
<html>
<head>
<?php
$this->doHtmlHead($title, $description, $palabrasClave);
?>
</head>
<body>
<?php
include_once("analyticstracking.php");
$this->logotipo();
$this->menu();
}
function logotipo(){
?>
<header>
<div class="flex-container">
<div class="flex-items flex-logo">
<div class="container"><img src="Imagenes/logo-tarot-vida.PNG" alt="logotipo" style="
width: 150px; height: auto;"/></div>
</div>
<div class="flex-items flex-p">
<p style="color: darkslateblue; font-size: 20px;">Consultas de tarot y cartas españolas</p>
<p style="color: darkslateblue; font-size: 20px;">Limpiezas de aura y energéticas</p>
</div>
</div>
<?php
}
function doHtmlFooter(){
?>
<footer>Copyright © 2016 | Diseñada por: Victor Cabral Vida</footer>
</body>
</html>
<?php
}
function menu(){
?>
<div class="flex-container flex-menu">
<div class="flex-items">
<!--<ul>
<li><a href="index.php" class="active">Inicio</a></li>
<li><a href="tarot.php">Tarot</a></li>
<li><a href="cartasEspanolas.php">Cartas españolas</a></li>
</ul>-->
<div class="flex-item"><a href="index.php" class="active">Inicio</a></div>
<div class="flex-item"><a href="tarot.php">Tarot</a></div>
<div class="flex-item"><a href="cartasEspanolas.php">Cartas españolas</a></div>
</div>
</div>
</header>
<?php
}
function separador(){
?>
<div class="separador"></div>
<?php
}
function separador2(){
?>
<div class="separador2"></div>
<?php
}
function contenedor($imagenes){
?>
<!--este section cierra en la función formulario-->
<section>
<div class="flex-container2">
<div class="contenedor">
<div id="slider1" class="nivoSlider" style="width: 400px; height: 350px;">
<?php
foreach ($imagenes as $imagen){
?>
<div class="nivo-imageLink">
<img src="<?='Imagenes/'.$imagen?>" alt="<?='foto '.$imagen?>" class="portada"
style="width: 300px; height: 300px;"/>
</div>
<?php
}
?>
</div>
<div class="texto">
<h1>Tarot y cartas españolas
en Sevilla</h1>
<h2>Consultas cita previa</h2>
<p>*presenciales y telefónicas</p>
<h2>Contacta
<span>675016413</span></h2>
<p>*rellenar formulario abajo o llámame</p>
</div>
</div>
<?php
}
function script(){
?>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/
jquery.min.js" type="text/javascript"></script>
<script src="js/jquery.nivo.slider.js" type="text/javascript">
</script>
<?php
}
function slider($imagenes){
?>
<div class="slider-wrapper">
<div id="slider" class="nivoSlider" style="height: 350px;">
<?php
$i = 0;
foreach ($imagenes as $imagen){
?>
<div class="nivo-imageLink">
<img src="<?='Imagenes/'.$imagen?>" title="<?='#caption'.$i?>" alt="<?='foto '.$imagen?>" style="width: 100%; height: 350px;
visibility: hidden; display: inline;" />
</div>
<?php
$i++;
}
?>
</div>
<!-- la clase slider-wrapper termina en la siguinte funcion(caption())-->
<?php
}
function caption($titulos){
$i = 0;
foreach ($titulos as $cabecera => $pagina){
?>
<div id="<?='caption'.$i?>" class="nivo-html-caption">
<h2><?=$cabecera?></h2>
<!--<div class="slide-text">
<div class="inline-slide-text" style="display: block; opacity: 100;">
poner aquí dentro si hay texto
</div>
</div> -->
<div class="readmore" style="opacity: 100;">
<a href="<?=$pagina?>" style="flex: 1 100%;">Sigue leyendo</a>
</div>
</div>
<?php
$i++;
}
?>
<!-- este div empieza en la función slider-->
</div>
<?php
}
function nivoSlider(){
?>
<script type="text/javascript" >
$(window).load(function(){
$('#slider').nivoSlider({
effect: 'slideInRight',
slices: 15,
boxCols: 8,
boxRows: 4,
animSpeed: 1000,
pauseTime: 3000,
startSlide: 0,
directionNav: true,
controlNav: false,
controlNavThumbs: false,
pauseOnHover: true,
manualAdvance: false,
prevText: '<span class="anterior" > Anterior</span>',
nextText: '<span class="siguiente" >Siguiente </span>',
randomStart: false,
});
$('#slider1').nivoSlider({
effect: 'slideInRight',
slices: 0,
boxCols: 8,
boxRows: 4,
animSpeed: 1000,
pauseTime: 3000,
startSlide: 0,
directionNav: false,
controlNav: false,
controlNavThumbs: false,
pauseOnHover: true,
manualAdvance: false,
prevText: '<span style="padding: 15px;background-color: white; border: 1px solid green; outline: 3px solid white;">Anterior</span>',
nextText: '<span style="padding: 15px;background-color: white; border: 1px solid green; outline: 3px solid white;">Siguiente</span>',
randomStart: false,
});
});
</script>
<?php
}
function cajas(){
?>
<section class="cajon">
<div class="caja">
<img src="Imagenes/tarot-vida-9.jpg" alt="foto caja 1" />
<div class="contenido">Contenido del enlace 1</div>
<div class="enlace"><a href="#">Ver</a></div>
</div>
<div class="caja">
<img src="Imagenes/tarot-vida-10.jpg" alt="foto caja 2"/>
<div class="contenido">Contenido del enlace 2</div>
<div class="enlace"><a href="#">Ver</a></div>
</div>
</section>
<?php
}
function formulario(){
?>
<section id="formulario">
<table>
<caption><h2>Formulario</h2></caption>
<form action="formulario.php" method="post">
<tr>
<th><label for="nombre">¿Como te llamas?</label></th>
</tr>
<tr>
<td><input type="text" name="nombre" id="nombre" maxlength="30" size="25" placeholder="Nombre"
required="required" /></td>
</tr>
<tr>
<th><label for="asunto"><pre>¿Quieres incluir un asunto?
(opcional)</pre></label></th>
</tr>
<tr>
<td><input type="text" name="asunto" id="asunto" maxlength="50" size="25" placeholder="Asunto"/></td>
</tr>
<tr>
<th><label for="telefono">Teléfono</label></th>
</tr>
<tr>
<td><input type="tel" name="telefono" id="telefono" required="required"/></td>
</tr>
<tr>
<td colspan="2" style="text-align: center;"><input type="submit" class="button" value="Enviar"/></td>
</tr>
</form>
</table>
</section>
<!-- este cierre de div es de la función contenedor, el div class="flex-container"-->
</div>
<!--este section abre en la función contenedor()-->
</section>
<?php
}
function informacion(){
?>
<article id="informacion">
<p>¿Estás interesado en una consulta?</p><p>Rellena el formulario y me pondré en contacto contigo en la mayor
brevedad posible.</p>
</article>
<?php
}
function envioFormulario(){
if($_POST != FALSE){
$nombre = filter_input(INPUT_POST, 'nombre');
$asunto = filter_input(INPUT_POST, 'asunto');
$telefono = filter_input(INPUT_POST, 'telefono');
$aDireccion = "[email protected]";
$contenidoEmail = "Nombre cliente: ". $nombre . "\n" .
"Teléfono cliente: " . $telefono . "\n";
$enviado = mail($aDireccion, $asunto, $contenidoEmail);
}
if(!$enviado){
echo "<h2>Su mensaje no ha podido ser enviado.</h2>";
echo "<p><a href='index.php'>Vuelva a intentarlo de nuevo</a></p>";
}else{
echo "<h2>Su mensaje ha sido enviado correctamente.</h2>";
}
}
function mostrarPaginaTexto($texto){
echo $texto;
}
function presentacion(){
?>
<div class="presentacion">
<p>¡Hola! Me llamo <b>Maria</b> y ayudo a otras personas a lograr su bienestar y éxito.</p><p>Realizo
la <strong>lectura de cartas en Sevilla</strong> y soy una <strong>vidente natural</strong>.</p><p>Estoy
especializada en <strong>limpiezas de auras y limpiezas energéticas</strong> (personas, casas, negocios)
además de <strong>echar las cartas: Tarot y la baraja española</strong>. También conocidos como <strong>
cartomancia</strong>. Con gran incidencia en el <strong>tarot del amor, tarot del trabajo y tarot de
la salud.</strong></p><p>Mi don lo heredé de mi madre y lo he ido perfeccionando a lo largo de 25 años
de experiencia.</p>
</div>
<?php
}
function bienvenida(){
?>
<div ng-app="myApp" ng-controller="myCtrl" class="welcome flex-container">
<p class="clock" ng-bind="myClock"></p>
<h3 class="bienvenida" ng-bind="myWelcome"></h3>
</div>
<script>
var app = angular.module("myApp", []);
app.controller("myCtrl", function($scope, $timeout, $interval){
$scope.myWelcome = "¿COMO ESTAS?";
$timeout(function(){
$scope.myWelcome = "BIENVENIDO";
}, 3000);
$timeout(function(){
$scope.myWelcome = "BIENVENIDA";
},5000);
$scope.myClock = new Date().toLocaleTimeString();
$interval(function(){
$scope.myClock = new Date().toLocaleTimeString();
}, 1000);
});
</script>
<?php
}
}