revolucion
This commit is contained in:
12
lib/Dojo/Model/Data/admin/event/add/qCup.q
Executable file
12
lib/Dojo/Model/Data/admin/event/add/qCup.q
Executable file
@@ -0,0 +1,12 @@
|
||||
insert into curso
|
||||
(nombre,temario,servicios,estado)
|
||||
values(
|
||||
?, # cname
|
||||
?, # csubjects
|
||||
?, # cservices
|
||||
case ? when "on" then 1 else 0 end #cen
|
||||
);
|
||||
|
||||
|
||||
|
||||
|
||||
14
lib/Dojo/Model/Data/admin/event/add/qEup.q
Executable file
14
lib/Dojo/Model/Data/admin/event/add/qEup.q
Executable file
@@ -0,0 +1,14 @@
|
||||
insert into evento
|
||||
(lugar_id, fecha_inicio, fecha_fin, precio, promocion, promo_estado, curso_id, imagen_chica, estado)
|
||||
values(
|
||||
?, # eplace
|
||||
concat(?,"-",?,"-",?), # yini - mini - dini
|
||||
concat(?,"-",?,"-",?), # yend - mend - dend
|
||||
?, # cost ,
|
||||
?, # promo ,
|
||||
case ? when "on" then 1 else 0 end, # pen
|
||||
?, # ecourse ,
|
||||
?, # eimg ,
|
||||
case ? when "on" then 1 else 0 end # een
|
||||
);
|
||||
|
||||
15
lib/Dojo/Model/Data/admin/event/add/qPup.q
Executable file
15
lib/Dojo/Model/Data/admin/event/add/qPup.q
Executable file
@@ -0,0 +1,15 @@
|
||||
insert into lugar
|
||||
(nombre,direccion,observacion,municipio,federativa,pais,lat,lng,estado)
|
||||
values(
|
||||
?, # pname
|
||||
?, # paddr
|
||||
?, # pobs
|
||||
?, # pto
|
||||
?, # pst
|
||||
?, # pco
|
||||
?, # plat
|
||||
?, # plng
|
||||
case ? when "on" then 1 else 0 end #pen
|
||||
);
|
||||
|
||||
|
||||
3
lib/Dojo/Model/Data/admin/event/change/qCdel.q
Executable file
3
lib/Dojo/Model/Data/admin/event/change/qCdel.q
Executable file
@@ -0,0 +1,3 @@
|
||||
delete from curso where id = ? ; # cprev
|
||||
|
||||
|
||||
6
lib/Dojo/Model/Data/admin/event/change/qCup.q
Executable file
6
lib/Dojo/Model/Data/admin/event/change/qCup.q
Executable file
@@ -0,0 +1,6 @@
|
||||
update curso set
|
||||
nombre = ?, # cname
|
||||
temario = ?, # csubjects
|
||||
servicios = ?, # cservices
|
||||
estado = case ? when "on" then 1 else 0 end # cen
|
||||
where id = ? ; # cprev
|
||||
2
lib/Dojo/Model/Data/admin/event/change/qEdel.q
Executable file
2
lib/Dojo/Model/Data/admin/event/change/qEdel.q
Executable file
@@ -0,0 +1,2 @@
|
||||
delete from evento where id = ? ; # eprev
|
||||
|
||||
12
lib/Dojo/Model/Data/admin/event/change/qEup.q
Executable file
12
lib/Dojo/Model/Data/admin/event/change/qEup.q
Executable file
@@ -0,0 +1,12 @@
|
||||
update evento set
|
||||
lugar_id = ?, # eplace
|
||||
fecha_inicio = concat(?,"-",?,"-",?), # yini - mini - dini
|
||||
fecha_fin = concat(?,"-",?,"-",?), # yend - mend - dend
|
||||
precio = ?, # cost
|
||||
promocion = ?, # promo
|
||||
promo_estado = case ? when "on" then 1 else 0 end, #pen
|
||||
curso_id = ?, # ecourse
|
||||
imagen_chica = ?, # eimg
|
||||
estado = case ? when "on" then 1 else 0 end # een
|
||||
where id = ?; # eprev
|
||||
|
||||
4
lib/Dojo/Model/Data/admin/event/change/qPdel.q
Executable file
4
lib/Dojo/Model/Data/admin/event/change/qPdel.q
Executable file
@@ -0,0 +1,4 @@
|
||||
delete from lugar where id = ?; # pprev ;
|
||||
|
||||
|
||||
|
||||
12
lib/Dojo/Model/Data/admin/event/change/qPup.q
Executable file
12
lib/Dojo/Model/Data/admin/event/change/qPup.q
Executable file
@@ -0,0 +1,12 @@
|
||||
update lugar set
|
||||
nombre= ?, # pname
|
||||
direccion= ?, # paddr
|
||||
observacion= ?,# pobs
|
||||
municipio= ?, # pto
|
||||
federativa= ?, # pst
|
||||
pais= ?, # pco
|
||||
lat=?, # plat
|
||||
lng=?, # plng
|
||||
estado = case ? when "on" then 1 else 0 end # pen
|
||||
where id = ?; # pprev ;
|
||||
|
||||
9
lib/Dojo/Model/Data/admin/event/json/qCourse.q
Executable file
9
lib/Dojo/Model/Data/admin/event/json/qCourse.q
Executable file
@@ -0,0 +1,9 @@
|
||||
select
|
||||
id as "cid",
|
||||
nombre as "cname",
|
||||
temario as "csubjects",
|
||||
servicios as "cservices"
|
||||
from curso
|
||||
where id= ? ; #course ;
|
||||
|
||||
|
||||
21
lib/Dojo/Model/Data/admin/event/json/qEvent.q
Executable file
21
lib/Dojo/Model/Data/admin/event/json/qEvent.q
Executable file
@@ -0,0 +1,21 @@
|
||||
select
|
||||
"event" as "tag",
|
||||
id,
|
||||
lugar_id as "pid",
|
||||
curso_id as "cid",
|
||||
precio as "cost",
|
||||
promocion as "promo",
|
||||
promo_estado as "pen",
|
||||
day(fecha_inicio) as "dini",
|
||||
month(fecha_inicio) as "mini",
|
||||
year(fecha_inicio) as "yini",
|
||||
day(fecha_fin) as "dend",
|
||||
month(fecha_fin) as "mend",
|
||||
year(fecha_fin) as "yend",
|
||||
coalesce(imagen_chica,0) as "eimg",
|
||||
|
||||
estado as "een"
|
||||
from evento
|
||||
where id= ? ; # ecourse ;
|
||||
|
||||
|
||||
15
lib/Dojo/Model/Data/admin/event/json/qPlace.q
Executable file
15
lib/Dojo/Model/Data/admin/event/json/qPlace.q
Executable file
@@ -0,0 +1,15 @@
|
||||
select
|
||||
id as "pid",
|
||||
nombre as "pname",
|
||||
direccion as "paddr",
|
||||
observacion as "pobs",
|
||||
municipio as "pto",
|
||||
federativa as "pst",
|
||||
pais as "pco",
|
||||
lat as "plat",
|
||||
lng as "plng",
|
||||
estado as "pen"
|
||||
from lugar
|
||||
where id= ? ; # course ;
|
||||
|
||||
|
||||
15
lib/Dojo/Model/Data/admin/event/qCprev.q
Executable file
15
lib/Dojo/Model/Data/admin/event/qCprev.q
Executable file
@@ -0,0 +1,15 @@
|
||||
|
||||
/* c#host localhost*/
|
||||
/* c#database #dbdata */
|
||||
/* c#user #dbdata_user */
|
||||
/* c#password #dbdata_pass */
|
||||
|
||||
|
||||
|
||||
select
|
||||
"cprev" as "tag",
|
||||
nombre as "name",
|
||||
id
|
||||
from curso
|
||||
order by nombre asc;
|
||||
|
||||
12
lib/Dojo/Model/Data/admin/event/qEcourse.q
Executable file
12
lib/Dojo/Model/Data/admin/event/qEcourse.q
Executable file
@@ -0,0 +1,12 @@
|
||||
|
||||
/* c#host localhost*/
|
||||
/* c#database #dbdata */
|
||||
/* c#user #dbdata_user */
|
||||
/* c#password #dbdata_pass */
|
||||
|
||||
|
||||
select
|
||||
"ecourse" as "tag",
|
||||
nombre as "name",
|
||||
id
|
||||
from curso where estado=1;
|
||||
13
lib/Dojo/Model/Data/admin/event/qEmend.q
Executable file
13
lib/Dojo/Model/Data/admin/event/qEmend.q
Executable file
@@ -0,0 +1,13 @@
|
||||
|
||||
/* c#host localhost*/
|
||||
/* c#database #dbdata */
|
||||
/* c#user #dbdata_user */
|
||||
/* c#password #dbdata_pass */
|
||||
|
||||
|
||||
|
||||
select
|
||||
"emend" as "tag",
|
||||
nombre as "name",
|
||||
id
|
||||
from mes;
|
||||
14
lib/Dojo/Model/Data/admin/event/qEmini.q
Executable file
14
lib/Dojo/Model/Data/admin/event/qEmini.q
Executable file
@@ -0,0 +1,14 @@
|
||||
|
||||
/* c#host localhost*/
|
||||
/* c#database #dbdata */
|
||||
/* c#user #dbdata_user */
|
||||
/* c#password #dbdata_pass */
|
||||
|
||||
|
||||
|
||||
|
||||
select
|
||||
"emini" as "tag",
|
||||
nombre as "name",
|
||||
id
|
||||
from mes;
|
||||
13
lib/Dojo/Model/Data/admin/event/qEplace.q
Executable file
13
lib/Dojo/Model/Data/admin/event/qEplace.q
Executable file
@@ -0,0 +1,13 @@
|
||||
|
||||
/* c#host localhost*/
|
||||
/* c#database #dbdata */
|
||||
/* c#user #dbdata_user */
|
||||
/* c#password #dbdata_pass */
|
||||
|
||||
|
||||
|
||||
select
|
||||
"eplace" as "tag",
|
||||
nombre as "name",
|
||||
id
|
||||
from lugar where estado=1;
|
||||
9
lib/Dojo/Model/Data/admin/event/qEprev.q
Executable file
9
lib/Dojo/Model/Data/admin/event/qEprev.q
Executable file
@@ -0,0 +1,9 @@
|
||||
select
|
||||
concat(day(e.fecha_inicio)," de ",m.nombre," ",l.nombre) as "name",
|
||||
e.id as id
|
||||
from evento as e
|
||||
inner join lugar as l on e.lugar_id=l.id
|
||||
inner join mes as m on month(e.fecha_inicio)=m.id
|
||||
where e.estado=1
|
||||
order by e.fecha_inicio desc;
|
||||
|
||||
15
lib/Dojo/Model/Data/admin/event/qPprev.q
Executable file
15
lib/Dojo/Model/Data/admin/event/qPprev.q
Executable file
@@ -0,0 +1,15 @@
|
||||
|
||||
/* c#host localhost*/
|
||||
/* c#database #dbdata */
|
||||
/* c#user #dbdata_user */
|
||||
/* c#password #dbdata_pass */
|
||||
|
||||
|
||||
|
||||
select
|
||||
"pprev" as "tag",
|
||||
nombre as "name",
|
||||
id
|
||||
from lugar
|
||||
order by nombre asc;
|
||||
|
||||
2
lib/Dojo/Model/Data/admin/home/update/qUpdate.q
Executable file
2
lib/Dojo/Model/Data/admin/home/update/qUpdate.q
Executable file
@@ -0,0 +1,2 @@
|
||||
update casa set contenido=? where nombre=?;
|
||||
|
||||
11
lib/Dojo/Model/Data/admin/mensajes/json/qGetInfo.q
Executable file
11
lib/Dojo/Model/Data/admin/mensajes/json/qGetInfo.q
Executable file
@@ -0,0 +1,11 @@
|
||||
select
|
||||
e.id as imid,
|
||||
concat(day(e.fecha)," de ",m.nombre," ", year(e.fecha)) as imdate,
|
||||
e.nombre as imname,
|
||||
e.correo as imail,
|
||||
e.texto as immsg
|
||||
|
||||
from entrada as e
|
||||
inner join vuelo.mes as m on m.id=month(e.fecha)
|
||||
where e.id= ? ; #imid
|
||||
|
||||
7
lib/Dojo/Model/Data/admin/mensajes/qEntries.q
Executable file
7
lib/Dojo/Model/Data/admin/mensajes/qEntries.q
Executable file
@@ -0,0 +1,7 @@
|
||||
select
|
||||
id as mid,
|
||||
concat(nombre," ",date(fecha)) as "entry"
|
||||
from entrada
|
||||
order by fecha desc
|
||||
limit 100;
|
||||
|
||||
12
lib/Dojo/Model/Data/admin/radio/qAdmin.q
Executable file
12
lib/Dojo/Model/Data/admin/radio/qAdmin.q
Executable file
@@ -0,0 +1,12 @@
|
||||
|
||||
/* c#host localhost*/
|
||||
/* c#database #dbdata */
|
||||
/* c#user #dbdata_user */
|
||||
/* c#password #dbdata_pass */
|
||||
|
||||
|
||||
|
||||
select
|
||||
contenido as "rContent"
|
||||
from casa where nombre="rmod";
|
||||
|
||||
3
lib/Dojo/Model/Data/admin/radio/update/qUpdate.q
Executable file
3
lib/Dojo/Model/Data/admin/radio/update/qUpdate.q
Executable file
@@ -0,0 +1,3 @@
|
||||
# update casa set contenido= q#link where nombre = q#update ;
|
||||
update casa set contenido= ? where nombre = ? ;
|
||||
|
||||
100
lib/Dojo/Model/Data/podcast/podcast.json
Executable file
100
lib/Dojo/Model/Data/podcast/podcast.json
Executable file
@@ -0,0 +1,100 @@
|
||||
[
|
||||
{
|
||||
"tag":"podcast",
|
||||
"id":"1",
|
||||
"ptitle":"1. ZuChangFa - Las 8 frases explicadas",
|
||||
"ptext":"Método de ZhiNeng QiGong para la Orgnanización del Campo",
|
||||
"source":"https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/221858279&color=ff5500&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&visual=true"
|
||||
},
|
||||
{
|
||||
"tag":"podcast",
|
||||
"id":"2",
|
||||
"ptitle":"2. Dian Tian Li Di - Las 8 frases con música",
|
||||
"ptext":"Método de ZhiNeng QiGong para la Organización del Campo, música con letra original compuesta por el maestro Pang He Ming.",
|
||||
"source":"https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/224314693&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&visual=true"
|
||||
},
|
||||
{
|
||||
"tag":"podcast",
|
||||
"id":"3",
|
||||
"ptitle":"3. Din Tian Li Di - Grabación original del centro Huaxia (Chino)",
|
||||
"ptext":"Método de ZhiNeng QiGong para la Organización del Campo. Con música y letra original compuesta por el maestro Pang He Ming, grabación original del Centro Huaxia (hospital más grande del mundo sin medicamentos).",
|
||||
"source":"https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/224980950&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&visual=true"
|
||||
},
|
||||
{
|
||||
"tag":"podcast",
|
||||
"id":"4",
|
||||
"ptitle":"4. La Teoría del HunYuan - ZhiNeng QiGong",
|
||||
"ptext":"Este Podcast que contiene una mirada de los fundamentos teóricos de ZhiNeng QiGong. Con base en esta teoría, buscamos profundizar posteriormente en algunos conceptos muy importantes.",
|
||||
"source":"https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/226460492&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&visual=true"
|
||||
},
|
||||
{
|
||||
"tag":"podcast",
|
||||
"id":"5",
|
||||
"ptitle":"5. Yi Yuan Ti - ZhiNeng QiGong",
|
||||
"ptext":"Analizamos el recurso más importante que tiene el ser humano para transformarse a sí mismo: su propia mente.",
|
||||
"source":"https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/227191181&color=ff5500&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&visual=true"
|
||||
},
|
||||
{
|
||||
"tag":"podcast",
|
||||
"id":"6",
|
||||
"ptitle":"6. Explicación de HunHua - ZhiNeng QiGong",
|
||||
"ptext":"En esta sexta entrega hablamos sobre el fenómeno de HunHua, como parte fundamental de la teoría de ZhiNeng QiGong.",
|
||||
"source":"https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/228450367&color=ff5500&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&visual=true"
|
||||
},
|
||||
{
|
||||
"tag":"podcast",
|
||||
"id":"7",
|
||||
"ptitle":"7. HunYuan LingTong - ZhiNeng QiGong",
|
||||
"ptext":"La explicación de un concepto central de ZhiNeng QiGong, lleno de sabiduría y compromiso con nosotros mismos, con HunYuan LingTong TODO es posible.",
|
||||
"source":"https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/230195055&color=ff5500&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&visual=true"
|
||||
},
|
||||
{
|
||||
"tag":"podcast",
|
||||
"id":"8",
|
||||
"ptitle":"8. De Gao Qi Chun ( El cambio verdadero) - ZhiNeng QiGong",
|
||||
"ptext":"De Gao Qi Chun, un concepto muy profundo que nos lleva al cambio verdadero. Alcanzar la más alta moral es llegar a un nivel congruencia y de respeto...",
|
||||
"source":"https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/231667352&color=ff5500&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&visual=true"
|
||||
},
|
||||
{
|
||||
"tag":"podcast",
|
||||
"id":"9",
|
||||
"ptitle":"9. Mantener la mente simple",
|
||||
"ptext":"Algunas recomendaciones para ayudarnos a mantener la mente simple.",
|
||||
"source":"https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/233739996&color=ff5500&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&visual=true"
|
||||
},
|
||||
{
|
||||
"tag":"podcast",
|
||||
"id":"10",
|
||||
"ptitle":"10. Amor al paso y al cambio.",
|
||||
"ptext":"Estudiamos la necesidad de amar cada paso que damos para acercarnos a cumplir nuestros más bellos sueños y exploramos la importancia de aprender de los cambios que ocurren en nuestro camino.",
|
||||
"source":"https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/239091582&color=ff5500&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&visual=true"
|
||||
},
|
||||
{
|
||||
"tag":"podcast",
|
||||
"id":"11",
|
||||
"ptitle":"11. Cómo mejorar nuestra concentración - YiShou, DingLi",
|
||||
"ptext":"¿Cómo puedo concentrarme mejor? En esta entrega de Podcast, abordamos dos conceptos que nos ayudan a mejorar nuestro enfoque y nuestra capacidad de concentración.",
|
||||
"source":"https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/244060912&color=ff5500&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&visual=true"
|
||||
},
|
||||
{
|
||||
"tag":"podcast",
|
||||
"id":"12",
|
||||
"ptitle":"12. Admira el GongFu",
|
||||
"ptext":"De los campeones debemos admirar el gran esfuerzo que han realizado para lograr sus objetivos. Porque triunfan sólo cuando se convierten en la mejor versión de sí mismos, cuando recorren miles de veces el camino que los lleva a lograr lo que en verdad quieren.",
|
||||
"source":"https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/246592916&color=ff5500&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&visual=true"
|
||||
},
|
||||
{
|
||||
"tag":"podcast",
|
||||
"id":"13",
|
||||
"ptitle":"13. La voluntad",
|
||||
"ptext":"Cuando analizamos qué tan lejos estamos de donde queremos llegar, nos damos cuenta de que es muy importante desarrollar una fuerza de voluntad indomable para lograr nuestros más bellos sueños...",
|
||||
"source":"https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/250019055&color=ff5500&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&visual=true"
|
||||
},
|
||||
{
|
||||
"tag":"podcast",
|
||||
"id":"14",
|
||||
"ptitle":"14. El Aprendiz de Mago (Oropel)",
|
||||
"ptext":"En esta 14a entrega del Podcast de ZhiNeng QiGong, contamos una historia diseñada por nuestro amigo Fernando Filippis, un instructor argentino que ha creado un relato muy bello con un mensaje increíble.",
|
||||
"source":"https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/263699943&color=ff5500&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&visual=true"
|
||||
}
|
||||
]
|
||||
1
lib/Dojo/Model/Data/podcast/text.txt
Executable file
1
lib/Dojo/Model/Data/podcast/text.txt
Executable file
@@ -0,0 +1 @@
|
||||
Hemos desarrollado con mucho cariño ejercicios gratuitos y descargables que pueden ser practicados por cualquier persona aún antes de asistir a uno de los cursos de instrucción.
|
||||
Reference in New Issue
Block a user