MovableType on Smarty

f:id:tenman:20080526123140j:image
MT-4.1-jaは、Smartyやezsqlといったテンプレートクラスや、データベースクラスファイルが添付されています。

せっかくだもん、使えば、いろんなことが出来るわけで、出来るのかどうか試してみました。
まずは、昨日のエントリに書いたphpが使える設定をした上で、、、
SmartyのデモファイルをMTに表示してやる。demo/index.phpをコピペ
フォーマットは なし。
※ダイナミックパブリッシュでは、使えません。必ずスタティックパブリッシュにしてください。

<?php
//ここから
$path = "/smartyディレクトリまでの絶対パス/mt/php/extlib/smarty/";
require $path .'libs/Smarty.class.php';

$smarty = new Smarty;
$smarty->template_dir  = $path .'demo/templates';
$smarty->compile_dir   = $path .'demo/templates_c';//このディレクトリは、作る。パーミッション777とか

$smarty->config_dir    = $path .'demo/configs';
$smarty->compile_check = true;
$smarty->debugging = true;

$smarty->assign("Name","Fred Irving Johnathan Bradley Peppergill");
$smarty->assign("FirstName",array("John","Mary","James","Henry"));
$smarty->assign("LastName",array("Doe","Smith","Johnson","Case"));
$smarty->assign("Class",array(array("A","B","C","D"), array("E", "F", "G", "H"),
	  array("I", "J", "K", "L"), array("M", "N", "O", "P")));

$smarty->assign("contacts", array(array("phone" => "1", "fax" => "2", "cell" => "3"),
	  array("phone" => "555-4444", "fax" => "555-3333", "cell" => "760-1234")));

$smarty->assign("option_values", array("NY","NE","KS","IA","OK","TX"));
$smarty->assign("option_output", array("New York","Nebraska","Kansas","Iowa","Oklahoma","Texas"));
$smarty->assign("option_selected", "NE");

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



?>
TOP