Include mit Smarty

xtratz

Gesperrt
Hallo Leute,

hab ne Frage und zwar möchte ich mit Smarty eine PHP Datei einbinden.
Ich möchte das aber nicht in der tpl tun sondern in der PHP Datei.

Ich hab mir das so vorgestellt das ich den include Befehl in einer Variable zusammenfassen kann und dann in der tpl Datei mit dieser Variable aufrufen kann.

Bietet Smarty so etwas in der Art?.

Gruss
 
Auf der Seite von Smarty findest du folgendes:

HTML:
<html>
<head>
  <title>{$title}</title>
</head>
<body>
{include file='page_header.tpl'}

{* body of template goes here *}
{include file="$tpl_name.tpl"} <-- will replace $tpl_name with value

{include file='page_footer.tpl'}
</body>
</html>

Passt das?

Gruss
X
 
Zurück