aboutsummaryrefslogtreecommitdiffstats
path: root/library/Smarty/demo/templates/index.tpl
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-07-03 22:23:08 -0700
committerfriendica <info@friendica.com>2012-07-03 22:23:08 -0700
commitfd626022ec02ef47b9142bba08180502babbd0ca (patch)
treeffc77e4e9cafdc6e20217f3970de982cabcbd838 /library/Smarty/demo/templates/index.tpl
parent13b4962531ca3c4f085b385a2c6b8f088abb7d6a (diff)
downloadvolse-hubzilla-fd626022ec02ef47b9142bba08180502babbd0ca.tar.gz
volse-hubzilla-fd626022ec02ef47b9142bba08180502babbd0ca.tar.bz2
volse-hubzilla-fd626022ec02ef47b9142bba08180502babbd0ca.zip
add smarty engine, remove some obsolete zot1 stuff
Diffstat (limited to 'library/Smarty/demo/templates/index.tpl')
-rw-r--r--library/Smarty/demo/templates/index.tpl82
1 files changed, 82 insertions, 0 deletions
diff --git a/library/Smarty/demo/templates/index.tpl b/library/Smarty/demo/templates/index.tpl
new file mode 100644
index 000000000..38d233412
--- /dev/null
+++ b/library/Smarty/demo/templates/index.tpl
@@ -0,0 +1,82 @@
+{config_load file="test.conf" section="setup"}
+{include file="header.tpl" title=foo}
+
+<PRE>
+
+{* bold and title are read from the config file *}
+{if #bold#}<b>{/if}
+{* capitalize the first letters of each word of the title *}
+Title: {#title#|capitalize}
+{if #bold#}</b>{/if}
+
+The current date and time is {$smarty.now|date_format:"%Y-%m-%d %H:%M:%S"}
+
+The value of global assigned variable $SCRIPT_NAME is {$SCRIPT_NAME}
+
+Example of accessing server environment variable SERVER_NAME: {$smarty.server.SERVER_NAME}
+
+The value of {ldelim}$Name{rdelim} is <b>{$Name}</b>
+
+variable modifier example of {ldelim}$Name|upper{rdelim}
+
+<b>{$Name|upper}</b>
+
+
+An example of a section loop:
+
+{section name=outer
+loop=$FirstName}
+{if $smarty.section.outer.index is odd by 2}
+ {$smarty.section.outer.rownum} . {$FirstName[outer]} {$LastName[outer]}
+{else}
+ {$smarty.section.outer.rownum} * {$FirstName[outer]} {$LastName[outer]}
+{/if}
+{sectionelse}
+ none
+{/section}
+
+An example of section looped key values:
+
+{section name=sec1 loop=$contacts}
+ phone: {$contacts[sec1].phone}<br>
+ fax: {$contacts[sec1].fax}<br>
+ cell: {$contacts[sec1].cell}<br>
+{/section}
+<p>
+
+testing strip tags
+{strip}
+<table border=0>
+ <tr>
+ <td>
+ <A HREF="{$SCRIPT_NAME}">
+ <font color="red">This is a test </font>
+ </A>
+ </td>
+ </tr>
+</table>
+{/strip}
+
+</PRE>
+
+This is an example of the html_select_date function:
+
+<form>
+{html_select_date start_year=1998 end_year=2010}
+</form>
+
+This is an example of the html_select_time function:
+
+<form>
+{html_select_time use_24_hours=false}
+</form>
+
+This is an example of the html_options function:
+
+<form>
+<select name=states>
+{html_options values=$option_values selected=$option_selected output=$option_output}
+</select>
+</form>
+
+{include file="footer.tpl"}