smarty template engine
Thursday, November 20, 2008  
download | documentation | faq | forum | mailing lists | changelog | contribs 


search for in the  


WAP/WML

I template WAP/WML richiedono header php di tipo Content-Type che deve essere passato insieme al template. Il modo pił semplice per farlo sarebbe scrivere una funzione utente che stampi l'header. Tuttavia, se usate il caching, questo sistema non funziona, per cui lo faremo con il tag insert (ricordate che i tag insert non vanno in cache!). Assicuratevi che nulla sia inviato in output al browser prima del template, altrimenti l'header non potrą essere spedito.

Esempio 18-6. usare insert per scrivere un header Content-Type WML

<?php

// assicuratevi che apache sia configurato per le estensioni .wml!
// mettete questa funzione da qualche parte nell'applicazione, oppure
// in Smarty.addons.php
function insert_header($params)
{
   
// la funzione si aspetta un parametro $content
   
if (empty($params['content'])) {
       return;
   }
   
header($params['content']);
   return;
}

?>

il template deve iniziare con il tag insert:

{insert name=header content="Content-Type: text/vnd.wap.wml"}

<?xml version="1.0"?>  
<!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.1//EN" "http://www.wapforum.org/DTD/wml_1.1.xml"> 

<!-- begin new wml deck --> 
<wml> 
 <!-- begin first card -->
 <card>
  <do type="accept">
   <go href="#two"/>
  </do>
  <p>
   Welcome to WAP with Smarty!
   Press OK to continue...
  </p>
 </card>
 <!-- begin second card -->
 <card id="two">
  <p>
   Pretty easy isn't it?
  </p>
 </card>
</wml>



 

credits 

Smarty Copyright © 2002-2008
New Digital Group, Inc.

All rights reserved.