使用smarty包含模板

时间:2016-03-09 12:52:12

标签: php oop smarty

我在我的网站上使用模板引擎Smarty。

我尝试做的是将navbar.tpl包含到我的homepage.tpl中。 每个tpl文件都有一个用以下文件填充变量的php文件:

$smarty->assign('{the var name}', "{the value}");

如果我只打开我的主页,但是当我使用以下链接包含导航栏时,它确实有效:

{include 'NavBar.tpl'}

它包含我的菜单,但是应该从我的NavBar.php文件中填充的变量不能在这里填充我的navbar.php文件:

    <?php
include_once '../Models/DAO/Database.php';
include_once '../Models/category.php';
require_once '../smarty-3.1.29/libs/Smarty.class.php';


$smarty = new Smarty();

$smarty->template_dir = '../Views';
$smarty->compile_dir = '../tmp';

$categories = array();

$db = Database::getInstance();
$mysqli = $db->getConnection();
$sql_query = "select * from categories";
$result = $mysqli->query($sql_query);

while ($row = $result->fetch_object('category')){
    array_push($categories, $row);
}


//assign vars
$smarty->assign('categories', $categories);

$smarty->display('NavBar.tpl');
?>

这是我的navbar.tpl文件:

<nav class="navbar navbar-default">
  <div class="container-fluid">
    <div class="navbar-header">
      <a class="navbar-brand" href="Home.php"><img class="logo" alt="Logo" src="../views/images/logo.png"></a>
    </div>
    <ul class="nav navbar-nav">
      <li class="active"><a href="Home.php">Home</a></li>
      <li class="dropdown">
        <a class="dropdown-toggle" data-toggle="dropdown" href="#">Producten
        <span class="caret"></span></a>
        <ul class="dropdown-menu">

        {foreach from=$categories item=categorie}
        <li><a href="product_list.php?categorie={$categorie->name}">{$categorie->name}</a></li>
        {/foreach}
        </ul>
      </li>
      <li><a href="About.php">About</a></li> 
    </ul>
  </div>
</nav>

和homepage.tpl中的实际调用:

    <div id="wrap">
        {include '../views/NavBar.tpl'}
    </div>

homepage.php文件:

<?php
include_once '../Models/DAO/Database.php';
include_once '../Models/product.php';
require_once '../smarty-3.1.29/libs/Smarty.class.php';


$smarty = new Smarty();

$smarty->template_dir = '../Views';
$smarty->compile_dir = '../tmp';

//declare vars
$categorieName = "";
$products = array();

//load vars
if (isset($_GET['categorie'])){
    $categorieName = $_GET['categorie'];
    $db = Database::getInstance();
    $mysqli = $db->getConnection();
    $sql_query = "select * from products where categories_category_id = (Select category_id from categories where `name` =".'"'.$categorieName.'")';
    $result = $mysqli->query($sql_query);

    while ($row = $result->fetch_object('product')){
        array_push($products, $row);
    }
}
//assign vars
$smarty->assign('categorie', $categorieName);
$smarty->assign('products', $products);

$smarty->display('homepage.tpl');


?>

有没有人知道如何强制navbar.php填充navbar.tpl中的变量,看起来navbar.tpl并不知道php文件但是当我包含php文件时它将文件显示为纯文本。

1 个答案:

答案 0 :(得分:1)

我想你不明白Smarty模板的工作原理。模板不能调用PHP文件。例如,您可以将navbar.php修改为next:

$categories = array();

$db = Database::getInstance();
$mysqli = $db->getConnection();
$sql_query = "select * from categories";
$result = $mysqli->query($sql_query);

while ($row = $result->fetch_object('category')){
  array_push($categories, $row);
}
//assign vars
$smarty->assign('categories', $categories);

在此文件中,您只需填充导航栏的数组并为模板分配变量。

然后修改homepage.php。只需在此文件中的//declare vars之前包含navbar.php(例如,eaxample)。 在homepage.php中包含所有需要的文件,然后是init Smarty,然后包含navbar.php,其中包含类别初始化,然后包含此脚本的主要任务。

你应该将navbar.php包含在你想要的模板中使用navbar.tpl的所有php文件中。

当您致电$smarty->display('homepage.tpl');时,Smarty show template homepage.tpl andd包含带有navbar的模板。但是你应该在PHP中分配模板的变量。