2014-05-16 65 views
0

我正在寫一個簡單的苗條應用程序,並想寫與原生php混合smarty語法,但我不斷收到以下錯誤。我如何添加smartyBc到苗條框架

Syntax error in template "./templates/application/header.tpl" on line 106 "{php}" unknown tag "php" 

,如果我改變我的TPL文件{include_php}這樣

{include_php} 
    <?php echo 'home ' ?> 
    {/include_php} 

我碰到下面的錯誤,

Type: SmartyException 
Message: {include_php} is deprecated, use SmartyBC class to enable 
File: /home/ramza/apps/php/company/Smarty/sysplugins/smarty_internal_compile_include_php.php 
Line: 52 

我苗條的index.php低於:

<?php 
session_cache_limiter(false); 
session_start(); 
require 'vendor/autoload.php'; 
require 'vendor/php-activerecord/ActiveRecord.php'; 
require_once('Smarty/SmartyBC.class.php'); 

ActiveRecord\Config::initialize(function($cfg) { 
    $cfg->set_model_directory('models'); 
    $cfg->set_connections(array(
     'development' => 'mysql://root:@localhost/xxx' 
    )); 
}); 



require 'models/OcMember.php'; 

$app = new \Slim\Slim(array(
    'view' => new \Slim\Views\Smarty() 
)); 


$view = $app->view(); 
$view->parserDirectory = dirname(__FILE__) . 'Smarty'; 
$view->parserCompileDirectory = dirname(__FILE__) . '/compiled'; 
$view->parserCacheDirectory = dirname(__FILE__) . '/cache'; 

$view->parserExtensions = array(
    dirname(__FILE__) . '/vendor/slim/views/Slim/Views/SmartyPlugins', 
); 

$app->add(new \Slim\Middleware\SessionCookie(array(
    'expires' => '20 minutes', 
    'path' => '/', 
    'domain' => null, 
    'secure' => false, 
    'httponly' => false, 
    'name' => 'slim_session', 
    'secret' => '1e12350dc6629a44df6b6771b6cb0cabd153aadc91f6af2697d371294296f69866b7c729a58b82108770ab02b087fda821af4533fe85b8115504ed9084055d77', 
    'cipher' => MCRYPT_RIJNDAEL_256, 
    'cipher_mode' => MCRYPT_MODE_CBC 
))); 

$authenticate = function ($app) { 
    return function() use ($app) { 
     if (!isset($_SESSION['company_id'])) { 
      $_SESSION['urlRedirect'] = $app->request()->getPathInfo(); 
      $app->flash('error', 'Login required'); 
      $app->redirect('/company/login'); 
     } 
    }; 
}; 


$app->hook('slim.before.dispatch', function() use ($app) { 
    $current_company = null; 
    if (isset($_SESSION['company_id'])) { 
     $current_company = Company::find($_SESSION['company_id']); 
    } 
    $app->view()->setData('current_company', $current_company); 
}); 

require 'app/controllers/before_filters.php'; 
require 'app/controllers/members.php'; 
require 'app/controllers/login.php'; 
require 'app/controllers/registration.php'; 



#require 'app/controllers/category_menu.php'; 


$app->run(); 

回答

1

你不應該混用PHP和Smarty,所​​以你應該在PHP中做你需要的,併爲Smarty賦值。那麼你根本不需要使用{php}標籤。 Smarty用於顯示數據,並將Smarty與Smarty混合使得使用Smarty沒有多大意義。

但是如果你真的需要使用Smarty的模板PHP代碼,你應該改變:

$app = new \Slim\Slim(array(
    'view' => new \Slim\Views\Smarty() 
)); 

$app = new \Slim\Slim(array(
    'view' => new \Slim\Views\SmartyBC() 
)); 

,但我真的不建議使用內部Smarty模板PHP

編輯 - SMARTYBC視圖不在SLIM框架中存在,因此我們必須創建它

儘管我從來沒有使用Slim框架,但我決定進一步研究。由於SmartyBC在Slim視圖中不存在,我們必須手動創建它。

在你需要創建SmartyBC.php與內容文件修身\瀏覽目錄:

<?php 
/** 
* Slim - a micro PHP 5 framework 
* 
* @author  Josh Lockhart 
* @author  Andrew Smith 
* @link  http://www.slimframework.com 
* @copyright 2013 Josh Lockhart 
* @version  0.1.2 
* @package  SlimViews 
* 
* MIT LICENSE 
* 
* Permission is hereby granted, free of charge, to any person obtaining 
* a copy of this software and associated documentation files (the 
* "Software"), to deal in the Software without restriction, including 
* without limitation the rights to use, copy, modify, merge, publish, 
* distribute, sublicense, and/or sell copies of the Software, and to 
* permit persons to whom the Software is furnished to do so, subject to 
* the following conditions: 
* 
* The above copyright notice and this permission notice shall be 
* included in all copies or substantial portions of the Software. 
* 
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 
*/ 
namespace Slim\Views; 

/** 
* SmartyView 
* 
* The SmartyView is a custom View class that renders templates using the Smarty 
* template language (http://www.smarty.net). 
* 
* Two fields that you, the developer, will need to change are: 
* - parserDirectory 
* - parserCompileDirectory 
* - parserCacheDirectory 
* 
* @package Slim 
* @author Jose da Silva <http://josedasilva.net> 
*/ 
class SmartyBC extends \Slim\View 
{ 
    /** 
    * @var string The path to the Smarty code directory WITHOUT the trailing slash 
    */ 
    public $parserDirectory = null; 

    /** 
    * @var string The path to the Smarty compiled templates folder WITHOUT the trailing slash 
    */ 
    public $parserCompileDirectory = null; 

    /** 
    * @var string The path to the Smarty cache folder WITHOUT the trailing slash 
    */ 
    public $parserCacheDirectory = null; 

    /** 
    * @var SmartyExtensions The Smarty extensions directory you want to load plugins from 
    */ 
    public $parserExtensions = array(); 

    /** 
    * @var parserInstance persistent instance of the Parser object. 
    */ 
    private $parserInstance = null; 

    /** 
    * Render Template 
    * 
    * This method will output the rendered template content 
    * 
    * @param string $template The path to the template, relative to the templates directory. 
    * @param null $data 
    * @return string 
    */ 
    public function render($template, $data = null) 
    { 
     $parser = $this->getInstance(); 
     $parser->assign($this->all()); 

     return $parser->fetch($template, $data); 
    } 

    /** 
    * Creates new Smarty object instance if it doesn't already exist, and returns it. 
    * 
    * @throws \RuntimeException If Smarty lib directory does not exist 
    * @return \Smarty Instance 
    */ 
    public function getInstance() 
    { 
     if (! ($this->parserInstance instanceof \SmartyBC)) { 
      if (!class_exists('\SmartyBC')) { 
       if (!is_dir($this->parserDirectory)) { 
        throw new \RuntimeException('Cannot set the SmartyBC lib directory : ' . $this->parserDirectory . '. Directory does not exist.'); 
       } 
       require_once $this->parserDirectory . '/SmartyBC.class.php'; 
      } 

      $this->parserInstance = new \SmartyBC(); 
      $this->parserInstance->template_dir = $this->getTemplatesDirectory(); 
      if ($this->parserExtensions) { 
       $this->parserInstance->addPluginsDir($this->parserExtensions); 
      } 
      if ($this->parserCompileDirectory) { 
       $this->parserInstance->compile_dir = $this->parserCompileDirectory; 
      } 
      if ($this->parserCacheDirectory) { 
       $this->parserInstance->cache_dir = $this->parserCacheDirectory; 
      } 
     } 

     return $this->parserInstance; 
    } 
} 

事實上,你必須簡單複製從Smarty.php查看內容和更改所有的Smarty到SmartyBC。而已!

的index.php文件應該是這樣的:

<?php 

require 'Slim/Slim.php'; 

\Slim\Slim::registerAutoloader(); 


$app = new \Slim\Slim(array (
    'view' => new \Slim\Views\SmartyBC() 
) 
); 

$view = $app->view(); 
$view->parserDirectory = dirname(__FILE__) . '/smarty'; 
$view->parserCompileDirectory = dirname(__FILE__) . '/compiled'; 
$view->parserCacheDirectory = dirname(__FILE__) . '/cache'; 
$view->setTemplatesDirectory(dirname(__FILE__) . '/smarty/templates'); 


$app->get(
    '/', 
    function() use ($app) { 
     $app->render('index.tpl', array('test' => 'User'));  
    } 
); 


$app->post(
    '/post', 
    function() { 
     echo 'This is a POST route'; 
    } 
); 

$app->put(
    '/put', 
    function() { 
     echo 'This is a PUT route'; 
    } 
); 

$app->patch('/patch', function() { 
    echo 'This is a PATCH route'; 
}); 

$app->delete(
    '/delete', 
    function() { 
     echo 'This is a DELETE route'; 
    } 
); 

$app->run(); 

您不必手動,包括在這裏SmartyBC.class.php,你在你的代碼一樣。當然,這只是示例代碼和最小代碼(用於Slim框架和添加的Smarty視圖)。

模板文件:

{$test}, hello world and {php} echo "hello world from php"; {/php} 

輸出是:

User, hello world and hello world from php 

所以正是你想要達到的目標。

但是我想提醒你,這不是混合你的PHP和模板的最好方法。即使在Smarty文檔中,您也可以閱讀:

{php}標記已從Smarty中棄用,不應使用。將 代替PHP腳本或插件函數。

+0

我想這和它不工作,看起來像在 – Uchenna

+0

我已經添加了完整的解決方案,我的回答是 –

+0

該解決方案爲你工作苗條意見不包括SmartyBc? –