Skip to content

Instantly share code, notes, and snippets.

@kurozumi
Last active April 28, 2016 03:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kurozumi/3b424d1c1cd0597b218fa42ec44c1275 to your computer and use it in GitHub Desktop.
Save kurozumi/3b424d1c1cd0597b218fa42ec44c1275 to your computer and use it in GitHub Desktop.
【CodeIgniter】HTMLヘルパーにCodeIgniter Simple and Secure Twigライブラリ用のtwig_render関数を追加して共通テンプレートを作成する
<?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