Last active
April 28, 2016 03:36
-
-
Save kurozumi/3b424d1c1cd0597b218fa42ec44c1275 to your computer and use it in GitHub Desktop.
【CodeIgniter】HTMLヘルパーにCodeIgniter Simple and Secure Twigライブラリ用のtwig_render関数を追加して共通テンプレートを作成する
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
defined('BASEPATH') OR exit('No direct script access allowed'); | |
if ( ! function_exists('twig_render')) | |
{ | |
function twig_render($view, $params = []) | |
{ | |
$CI =& get_instance(); | |
return $CI->twig->render($view, $params); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment