Welcome Guest, Not a member yet? Register   Sign In
Really Simple Smarty 3 Library for Codeigniter
#33

[eluser]kristapsv[/eluser]
Hi, first of all thank you for the smarty CI integration, but I have some trouble putting it together with Phil Sturgeon's template library.

The problem is that in layout file the php code gets executed, but in view file only smarty code.

I want that in all view and layout files only smarty language code gets executed.

Codeigniter 2.0.2
Ci-Smarty
Phil Sturgeon's template library

I have 1 controller, 1 layout and 1 view file

Controller:
Code:
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');

class Home extends MY_Controller {
    public function index()
    {        
        $this->template->title('test');
        $this->template->set_layout('default.tpl','main')->build('main/home.tpl');
    }
}

/* End of file home.php */
/* Location: ./application/controllers/home.php */


layout file default.tpl
Code:
<!DOCTYPE html>
&lt;html&gt;&lt;?php die('This shoudnt happen'); ?&gt;
    &lt;head&gt;
        &lt;title&gt;{$template.title}&lt;/title&gt;
        {$template.metadata}
    &lt;/head&gt;
    &lt;body&gt;
        <h1>{$template.title}</h1>
        {$template.body}
    &lt;/body&gt;
&lt;/html&gt;

view file home.tpl
Code:
{assign var=foo value='baa'}{$foo}&lt;?php echo 'PHP is ingored here'; ?&gt;

Template library config:
parser_enabled = TRUE
parser_body_enabled = TRUE

May I shoudn't use then layout feature in template library as Smarty provide capabilities for layouts via template inheritance anyway ?


Messages In This Thread
Really Simple Smarty 3 Library for Codeigniter - by El Forum - 11-28-2010, 04:40 AM
Really Simple Smarty 3 Library for Codeigniter - by El Forum - 12-01-2010, 09:44 AM
Really Simple Smarty 3 Library for Codeigniter - by El Forum - 12-01-2010, 04:52 PM
Really Simple Smarty 3 Library for Codeigniter - by El Forum - 12-01-2010, 10:01 PM
Really Simple Smarty 3 Library for Codeigniter - by El Forum - 12-02-2010, 09:08 PM
Really Simple Smarty 3 Library for Codeigniter - by El Forum - 12-02-2010, 09:10 PM
Really Simple Smarty 3 Library for Codeigniter - by El Forum - 12-15-2010, 06:30 AM
Really Simple Smarty 3 Library for Codeigniter - by El Forum - 01-30-2011, 08:53 AM
Really Simple Smarty 3 Library for Codeigniter - by El Forum - 03-11-2011, 11:38 AM
Really Simple Smarty 3 Library for Codeigniter - by El Forum - 03-11-2011, 07:00 PM
Really Simple Smarty 3 Library for Codeigniter - by El Forum - 03-14-2011, 05:53 PM
Really Simple Smarty 3 Library for Codeigniter - by El Forum - 03-14-2011, 08:26 PM
Really Simple Smarty 3 Library for Codeigniter - by El Forum - 03-16-2011, 04:04 AM
Really Simple Smarty 3 Library for Codeigniter - by El Forum - 03-16-2011, 05:25 AM
Really Simple Smarty 3 Library for Codeigniter - by El Forum - 03-16-2011, 10:28 AM
Really Simple Smarty 3 Library for Codeigniter - by El Forum - 03-16-2011, 11:06 AM
Really Simple Smarty 3 Library for Codeigniter - by El Forum - 03-16-2011, 02:36 PM
Really Simple Smarty 3 Library for Codeigniter - by El Forum - 03-16-2011, 04:57 PM
Really Simple Smarty 3 Library for Codeigniter - by El Forum - 03-16-2011, 05:43 PM
Really Simple Smarty 3 Library for Codeigniter - by El Forum - 04-27-2011, 09:30 AM
Really Simple Smarty 3 Library for Codeigniter - by El Forum - 04-27-2011, 02:50 PM
Really Simple Smarty 3 Library for Codeigniter - by El Forum - 04-28-2011, 12:11 AM
Really Simple Smarty 3 Library for Codeigniter - by El Forum - 04-28-2011, 12:15 AM
Really Simple Smarty 3 Library for Codeigniter - by El Forum - 05-08-2011, 01:41 PM
Really Simple Smarty 3 Library for Codeigniter - by El Forum - 05-08-2011, 02:54 PM
Really Simple Smarty 3 Library for Codeigniter - by El Forum - 05-08-2011, 03:08 PM
Really Simple Smarty 3 Library for Codeigniter - by El Forum - 05-08-2011, 08:45 PM
Really Simple Smarty 3 Library for Codeigniter - by El Forum - 05-08-2011, 08:48 PM
Really Simple Smarty 3 Library for Codeigniter - by El Forum - 05-08-2011, 10:11 PM
Really Simple Smarty 3 Library for Codeigniter - by El Forum - 05-08-2011, 10:17 PM
Really Simple Smarty 3 Library for Codeigniter - by El Forum - 05-08-2011, 10:19 PM
Really Simple Smarty 3 Library for Codeigniter - by El Forum - 05-08-2011, 10:20 PM
Really Simple Smarty 3 Library for Codeigniter - by El Forum - 06-22-2011, 06:57 AM
Really Simple Smarty 3 Library for Codeigniter - by El Forum - 06-23-2011, 01:03 PM



Theme © iAndrew 2016 - Forum software by © MyBB