http://martin.com.uy/wp-content/themes/martinuy2/live/proxy.php?url_especifica=
0
14
Mar
2008

Separar diseño de código en php usando el motor de plantillas de phpBB (II)

Para esta segunda parte de la serie (ver la primera aquí) explicaré como utilizar condicionales, como anidar bloques y como generar salidas en distintas páginas html utilizando el mismo script php.

Condicionales.

Los condicionales son estructuras que permiten ejecutar una parte del código si se cumple tal condición. Supongamos que si la variable $i es igual a 1, queremos mostrar un bloque dentro de la página html y que si no se cumple queremos mostrar la página sin ese bloque.

Código php:

<?php
include_once("template.php");

$template = new template();
$prueba = "Esta es una prueba";
$template->assign_vars(array(
'VARIABLE1' => $prueba,
));
$i = rand(0, 1); //$i toma un valor entero aleatorio en el rango 0 - 1
if($i == 1)
{
$condicional_out = array(
‘I’ => $i,
);
$template->assign_block_vars(‘condicional’, $condicional_out);
}

$template->set_filenames(array(
'body' => 'prueba.html'));
$template->display('body');
unset($template);
?>

Código HTML:

<html><head><title></title></head><body>
<table>
<tr>
<td>
{VARIABLE1}
</td>
</tr>
</table>
<!– BEGIN condicional –>
<table>
<tr>
<td>
{condicional.I}
</td>
</tr>
</table>
<!– END condicional –>
</body></html>

La primera tabla se mostrará siempre. La segunda tabla aparecerá unicamente si la condición se cumple. Como pueden ver, la idea es la misma que la de las iteraciones.

Bloques anidados.

Ahora supongamos que si se cumple la condición $i es igual a 1 queremos que se muestre esa tabla pero además si se cumple que $h es igual a 5 queremos que se muestre una nueva fila dentro de esa tabla. Un bloque condicional estaría dentro de otro bloque condicional.

Código php:

<?php
include_once("template.php");

$template = new template();
$prueba = "Esta es una prueba";
$template->assign_vars(array(
'VARIABLE1' => $prueba,
));
$i = rand(0, 1);
if($i == 1)
{
$condicional_out = array(
‘I’ => $i,
);
$template->assign_block_vars(‘condicional’, $condicional_out);
$h = rand(0, 5);
//$h toma un valor entero aleatorio en el rango 0 - 5
if($h == 5)
{
$condicional2_out = array(
‘H’ => $h,
);
$template->assign_block_vars(‘condicional.condicional2’, $condicional2_out);
//Prestar atención al nombre del bucle. Se forma con el nombre del primer bucle, el "." y el nombre del segundo. En caso de haber más se van agregando en órden, siempre separados por "."
}
}

$template->set_filenames(array(
'body' => 'prueba.html'));
$template->display('body');
unset($template);
?>

Código HTML:

<html><head><title></title></head><body>
<table>
<tr>
<td>
{VARIABLE1}
</td>
</tr>
</table>
<!– BEGIN condicional –>
<table>
<tr>
<td>
{condicional.I}
</td>
</tr>
<!– BEGIN condicional2 –>
<tr>
<td>
{condicional.condicional2.H}
</td>
</tr>
<!– END condicional2 –>
</table>
<!– END condicional –>
</body></html>

Podríamos combinar, de la misma manera, bloques de iteraciones con bloques condicionales.

Un mismo script php, distintas salidas HTML.

Por último vamos a suponer esto: tenemos un script php en el que ingresa una variable GET llamada “prueba” (a través de la URL). Si esta variable es igual a 1, generamos la salida en prueba1.html. Si esa variable es igual a 2, generamos la salida en prueba2.html.

Código PHP:

<?php
include_once("template.php");

$template = new template();
if($_GET['prueba'] == 1) //La variable prueba ingresada es 1. Por ejemplo: http://dominio.com/prueba.php?prueba=1
{
$prueba = "Pagina 1";
$template->assign_vars(array(
'VARIABLE1' => $prueba,
));

$template->set_filenames(array(
'body' => 'prueba1.html')); //La salida se da en prueba1.html

}
if($_GET['prueba'] == 2) //La variable prueba ingresada es 2. Por ejemplo: http://dominio.com/prueba.php?prueba=2
{
$prueba = "Pagina 2";
$template->assign_vars(array(
'VARIABLE1' => $prueba,
));

$template->set_filenames(array(
'body' => 'prueba2.html'));
//La salida se da en prueba2.html
}
$template->display('body');
unset($template);
?>

Código HTML de prueba1.html

<html><head><title></title></head><body>
<table>
<tr>
<td>
{VARIABLE1}
</td>
</tr>
</table>
</body></html>

Código HTML de prueba2.html

<html><head><title></title></head><body>
<table>
<tr>
<td>
{VARIABLE1}
</td>
</tr>
</table>
</body></html>
Desde luego que se pueden hacer muchas más cosas pero voy a ir dejando por aquí para no aburrir. Estoy a las órdenes por cualquier consulta.

16
Mar
2008

No se si esta opinion esta en el lugar corecto o tendra algo que ver con este post(perdon)pero mi estrategia para cambiar templates xml a lo loco es descomprimiendo el archivo guardarlo en un fichero y subirlo es 100% efectivo como subirlo directamente del disco duro metodo que muchisimas personas no pueden obteneer el resultado(si hable de mas decimelo)

16
Mar
2008

No entendì mucho Hugo pero creo que estamos hablando de cosas distintas: el artìculo es sobre como separar còdigo php de diseño html en cualquier script que programes usando el motor de plantillas de phpBB (el foro).

Saludos,
martin.,

17
Mar
2008
hugo

Tenes razon me parecio que no tenia nada que ver pero ya le habia dado el ok,igual me sirve ya que todo lo que venga sobre este tipo de informacion lo guardo todo.

11
Jul
2008

excelente men bajaste la idea del phpbb muy facil y practico con tus codigos voy a implementar estos script en mi pagina web para visualizar perfiles de usuarios y ala proxiam que cambie el diseño, solo le muevo alos templates (Y)

19
Nov
2008
rhibioria

Hello. It is test.

22
Mar
2009
Nelson

He intentado hacer funcionar el ultimo ejemplo, pero me da este error:

Fatal error: template->_tpl_load(): No file specified for handle body in C:\AppServ\www\Lab\MasterPagePHPBB\template.php on line 873

Si yo quiero hacer un masterpage como en ASP.NET, cuál es la mejor forma de hacerlo en php?

y si tienes algún ejemplo donde se carguen distintas paginas sobre una misma plantilla, al hacer click en distintos links, te lo agradeceria si me lo pudieras enviar por correo.

Saludos!

22
Mar
2009

Nelson, te mando por mail el archivo con lo que estás buscando.

saludos,
martin.-

17
Apr
2009
Francisco

Bien esta muy bueno ocupaste el el motor de PHPBB que es muy bueno por lo que he podido leer por alli , me funciona a la perfecci{on pero estaba haciendo una pruebas con imagens y no me funciona, no me muestra las imagenes que agrego en el template donde tengo incluirlas?
Gracias…

6
May
2009

Francisco, no hay demasiado misterio para incluir imagenes porque se manejan como cualquier string. Creas una variable que puede ser solo la url de la imagen o que puede ser el tag “img” completo. Esa variable después la metés en el .tpl. Si es solo la url, la ponés en el atributo src={VARIABLE} y sino solo {VARIABLE}

saludos,
martin.-

4
Nov
2010
jegosoodype

Free website builder services come in miscellaneous styles and templates.
You should be superior to utter a website builder with your webhost as any well-thought-of party will deceive everybody or more.
These websites can attend to arrange for the aggregate that is top-priority on edifice a website.
Free website builder have made the undertaking of structure a website easier and less complicated. Equanimous the most trainee computer buyer can immediately fast and with no build a site.
Why profit a mean unmovable thousands of dollars when you can straight away and undoubtedly figure a adept spider’s web situate on your own?
Using a [url=http://www.jkahosting.com] free website builder [/url], you fool the perks and the service better of erection a professional website unrestrainedly and relaxed it is quiet looks professional and works as if you paid someone thousands to do so seeking you.
Some gentlemanly features with a freed webiste builder include pull and drop subdue, gadgets, decoative fonts, shopping carts, and seo help.
A good site builder should receive all of the above. If you cannot increase a website and do not want to twerp round with html regulations than it is highly recommended that you make use of a website builder.

30
Jul
2011
Evombtomi

диета линды гудмандетский врач диетологкак накачать круглую попу и похудеть в бедрахзвёздный диетолог маргарита королёвапохудение без диет после родовадреса диетологии и салонов красоты в городе краснодареесть ли ванна для похуденияпрепарат для похуденияздоровье нациидоктор семенов как похудетьгома средство для похудениябыстро похудеть супер диетакак похудела ксения собчакдиета с чечевицейвегетарианские диетические блюдакак пить яблочный сок что бы похудетьадыгейский сыр и диетайовович похуделапохудела анита цойдиета при диабете 1 типаправильное питание для выоора пола ребёнка

29
Aug
2011
takegyday

[url=http://drugsdir.com/main.php?sid=27][color=red] [b]Canadian Pharmacy [/b][/color][/url]
Fast Shipping (COD, FedEx). Overnight Delivery.
We accept: [b]VISA, MasterCard, E-check, AMEX[/b] and more.
Click [b]“BUY NOW”[/b] and go to the pharmacies directory

[url=http://drugsdir.com/main.php?sid=27][img]http://drugsdir.com/thumbs/pharma1.jpg[/img][/url]
[url=http://drugsdir.com/main.php?sid=27][img]http://drugsdir.com/thumbs/buynow.gif[/img][/url]

Related links:
[url=http://letyourmortgagemakeyourich.com/moneytalk/viewtopic.php?p=130127#130127]zolpidem tartrate to buy online 3247[/url]
[url=http://glow.phpwebhosting.com/%7Efade41/gfd/viewtopic.php?p=17871#17871]lorazepam effects of 8531[/url]
[url=http://gtainfo.com.pl/viewtopic.php?p=3236#3236]cheap fioricet 32 5692[/url]

31
Aug
2011

И что мне оставалось делать? Нет, это Гвен и Эдди танцуют под лунным светом в жизни. Ок, ничего страшного.

[url=http://pvn2.cba.pl/skachat-icq-dlya-nokia-6303-6-20.html]скачать icq для нокиа 6303[/url]
[url=http://noorislam521.cba.pl/]выкса интим знакомство[/url]
[url=http://retek2000.cba.pl/article-132.html]игра папины дочки ключ активации[/url]
[url=http://nyyanks21.cba.pl/all-pages.html]sitemap[/url]
[url=http://nike02.cba.pl/article-90.html]игры онлайн логические и головоломки[/url]
[url=http://pekohleb.cba.pl/723488236.html]ссылка[/url]
[url=http://noel75.cba.pl/]ссылка[/url]
[url=http://northguy1.cba.pl/article-105.html]приморск украина сайт знакомств[/url]
[url=http://ontargetmarketing.cba.pl/224440984.htm]еврейская община германнии знакомства[/url]
[url=http://pembertn.cba.pl/]вот[/url]
[url=http://pnakorn.cba.pl/]поиск знакомство остров[/url]
[url=http://nikita99.cba.pl/list-113.html]скачать опера мини 5 1[/url]
[url=http://qyvgv.cba.pl/937461808.html]сайт знакомств г октябрьский[/url]
[url=http://radgirl.cba.pl/85-icq-na-telefon-nokia-6131.html]icq на телефон nokia 6131[/url]
[url=http://rcmonitor.cba.pl/articles-101.html]сайт секс знакомств летссекс[/url]
[url=http://ow666.cba.pl/6-sayty-znakomstv-goubyh.html]сайты знакомств гоубых[/url]
[url=http://peschla.cba.pl/1-znakomstvo-s-inostrancami-sayt-svadba.html]знакомство с иностранцами сайт свадьба[/url]
[url=http://pallas99.cba.pl/prirodnyy-mag.html]ссылка[/url]
[url=http://outcropping.cba.pl/sitemap.html]все статьи[/url]
[url=http://presentbook.cba.pl/3-programma-dlya-igry-v-shashki.html]программа для игры в шашки[/url]
[url=http://nofdd.cba.pl/2.html]страница[/url]
[url=http://paganuzzi.cba.pl/3-hfnxck.html]компьютерные игры гонки играть[/url]
[url=http://pvn2.cba.pl/aska-dlya-nokia-c3-1-16.html]аська для nokia c3[/url]
[url=http://nishiharak.cba.pl/]тут[/url]
[url=http://pasha321.cba.pl/twilim-1-6.htm]знакомство с иностранцами чат онлайн[/url]

ладонь… схвати. А ты во что одет? Ну, мы – Чем я могу служить? Извини, Боймер, но я должен сказать… Я не знаю, что если я должна быть здесь, что если это Божий Замысел? Ты кого-то ждёшь? Даже сигналов бедствия нет. Вот мы и пришли. Это не любовная история. Это он во всем виноват. Пройдемте внутрь. Давайте, “Независимость”. Продолжайте. вот это мы и пили. Где окно? Где окно? Нет, он сказал: “Кратер”. Кроме, конечно, пятна крови, там, на перилах. Субтитры: Elenka Чемпионский Западногорный Терьер. Доброе утро, госпожа. Я бы его наверное и лежачего ударил, прямо неловко.
[url=http://palombi911.cba.pl/karty-igrat-poker-onlayn-3-24.html]карты играть покер онлайн[/url] [url=http://ppcleann.cba.pl/articles-125.html]петербург интим знакомства[/url] [url=http://ouohugftwoweee.cba.pl/]статья[/url] [url=http://palmde.cba.pl/idrtet.htm]здесь[/url] [url=http://ozznpat.cba.pl/1-znakomstvo-s-ruskimi-za-granicey.html]знакомство с рускими за границей[/url] [url=http://rbonica.cba.pl/index-167.htm]энергия волшебства[/url] [url=http://pahdc.cba.pl/sayt-znakomstv-s-estonskimi-muzhchinami-3-29.html]сайт знакомств с эстонскими мужчинами[/url] [url=http://nii6969.cba.pl/index-70.html]игры суперсемейка играть[/url] [url=http://nishiharak.cba.pl/onlayn-igry-3-5-let-30.html]онлайн игры 3 5 лет[/url] [url=http://pnkraus.cba.pl/6-alawar-fabrika-igr-igrat-onlayn.html]alawar фабрика игр играть онлайн[/url] [url=http://protomeristem11440.cba.pl/lgfamh-26.html]кукла колдуна акорды[/url] [url=http://prodalcom.cba.pl/list-195.html]знакомства ураинские[/url] [url=http://orbiculare.cba.pl/]маил игры онлайн азартные[/url] [url=http://pnakorn.cba.pl/2-pdfojr.htm]сайт знакомств в подарок[/url] [url=http://padau.cba.pl/3-28-axhagg.htm]джим на телефон нокиа скачать[/url]
Ты испортишь мне прическу. Ты не принес мне подарка,а? Кого заботит кучка евреев? Не отставайте от меня, чужеземцы! Хьюстон, мы летим домой. Здесь, на самом нижнем этаже, находится наш “Монстр Армадилльо”. Пробки на выезде из Рима. Я был хорош…в ту ночь? Первый день был полон приключений. Вы слышали приказ.

15
Sep
2011

[url=http://www.drugreviews.info/blog/doctors-prescribing-marijuana.html] doctors prescribing marijuana [/url]
[url=http://www.drugreviews.info/blog/marijuana-high-school.html] marijuana high school [/url]
[url=http://www.drugreviews.info/blog/grow-marijuana-legally.html] grow marijuana legally [/url]
[url=http://www.drugreviews.info/blog/buy-marijuana-online.html] buy marijuana online [/url]
[url=http://www.drugreviews.info/blog/marijuana-seeds-high.html] marijuana seeds high [/url]
[url=http://www.drugreviews.info/blog/marijuana-wiki.html] marijuana wiki [/url]
[url=http://www.drugreviews.info/blog/marijuana-in-high-school.html] marijuana in high school [/url]
[url=http://www.drugreviews.info/blog/marijuana-and-high-blood-pressure.html] marijuana and high blood pressure [/url]
[url=http://www.drugreviews.info/blog/marijuana-health-risks.html] marijuana health risks [/url]
[url=http://www.drugreviews.info/blog/prop-215.html] prop 215 [/url]

[url=http://www.drugreviews.info/blog/legal-highs-forum.html] legal highs forum [/url]
[url=http://www.drugreviews.info/blog/legal-high-usa.html] legal high usa [/url]
[url=http://www.drugreviews.info/blog/legal-high-weed.html] legal high weed [/url]
[url=http://www.drugreviews.info/blog/marijuana-risks.html] marijuana risks [/url]
[url=http://www.drugreviews.info/blog/legal-high-wholesale.html] legal high wholesale [/url]
[url=http://www.drugreviews.info/blog/legal-high-dust.html] legal high dust [/url]
[url=http://www.drugreviews.info/blog/bzp-pills.html] bzp pills [/url]
[url=http://www.drugreviews.info/blog/herbal-stop-smoking.html] herbal stop smoking [/url]
[url=http://www.drugreviews.info/blog/pros-and-cons-of-marijuana.html] pros and cons of marijuana [/url]
[url=http://www.drugreviews.info/blog/legal-drugs-get-high.html] legal drugs get high [/url]
[url=http://www.drugreviews.info/blog/herbal-highs.html] herbal highs [/url]
[url=http://www.drugreviews.info/blog/marijuana-essay.html] marijuana essay [/url]
[url=http://www.drugreviews.info/blog/california-marijuana-growing-laws.html] california marijuana growing laws [/url]
[url=http://www.drugreviews.info/blog/marijuana-high-blood-pressure.html] marijuana high blood pressure [/url]
[url=http://www.drugreviews.info/blog/how-to-get-high-legally.html] how to get high legally [/url]
[url=http://www.drugreviews.info/blog/legal-spice-high.html] legal spice high [/url]
[url=http://www.drugreviews.info/blog/herbal-cigarettes.html] herbal cigarettes [/url]
[url=http://www.drugreviews.info/blog/legal-highs-spice.html] legal highs spice [/url]
[url=http://www.drugreviews.info/blog/legal-high-forums.html] legal high forums [/url]
[url=http://www.drugreviews.info/blog/buy-salvia-divinorum-seeds.html] buy salvia divinorum seeds [/url]
[url=http://www.drugreviews.info/blog/high-definition-marijuana-pictures.html] high definition marijuana pictures [/url]
[url=http://www.drugreviews.info/blog/salvia-divinorum-leaves.html] salvia divinorum leaves [/url]
[url=http://www.drugreviews.info/blog/legal-drugs.html] legal drugs [/url]
[url=http://www.drugreviews.info/blog/medical-marijuana-online.html] medical marijuana online [/url]
[url=http://www.drugreviews.info/blog/pep-pills.html] pep pills [/url]
[url=http://www.drugreviews.info/blog/hawaiian-baby-woodrose.html] hawaiian baby woodrose [/url]
[url=http://www.drugreviews.info/blog/high-times-medical-marijuana-magazine.html] high times medical marijuana magazine [/url]
[url=http://www.drugreviews.info/blog/is-it-legal-to-be-high.html] is it legal to be high [/url]
[url=http://www.drugreviews.info/blog/happy-caps.html] happy caps [/url]
[url=http://www.drugreviews.info/blog/marijuana-tea-get-you-high.html] marijuana tea get you high [/url]
[url=http://www.drugreviews.info/blog/high-times-medical-marijuana.html] high times medical marijuana [/url]
[url=http://www.drugreviews.info/blog/online-legal-highs.html] online legal highs [/url]
[url=http://www.drugreviews.info/blog/get-legally-high.html] get legally high [/url]
[url=http://www.drugreviews.info/blog/legal-pills.html] legal pills [/url]
[url=http://www.drugreviews.info/blog/can-you-get-high-off-marijuana-stems.html] can you get high off marijuana stems [/url]
[url=http://www.drugreviews.info/blog/marijuana-high-times.html] marijuana high times [/url]
[url=http://www.drugreviews.info/blog/salvia-divinorum-purchase.html] salvia divinorum purchase [/url]
[url=http://www.drugreviews.info/blog/legal-highs-that-work.html] legal highs that work [/url]
[url=http://www.drugreviews.info/blog/salvia-for-sale.html] salvia for sale [/url]
[url=http://www.drugreviews.info/blog/supreme-court-medical-marijuana.html] supreme court medical marijuana [/url]
[url=http://www.drugreviews.info/blog/pros-of-legalizing-marijuana.html] pros of legalizing marijuana [/url]
[url=http://www.drugreviews.info/blog/legal-ways-of-getting-high.html] legal ways of getting high [/url]
[url=http://www.drugreviews.info/blog/high-from-legal-bud.html] high from legal bud [/url]
[url=http://www.drugreviews.info/blog/legally-high.html] legally high [/url]
[url=http://www.drugreviews.info/blog/hawaiian-woodrose.html] hawaiian woodrose [/url]

ayahuasca forum ayahuasca in peru

  1. 2 Trackback(s)

  2. Mar 14, 2008: martin.com.uy » Artículos » Separar diseño de código en php usando el motor de plantillas de phpBB
  3. Apr 11, 2008: martin.com.uy » Artículos » ¿Cómo agregar el Estado del Tiempo a tu sitio web?

Escribir un comentario