Smarty Forum Index Smarty
WARNING: All discussion is moving to https://reddit.com/r/smarty, please go there! This forum will be closing soon.

How can i access object in SMARTY tpl file

 
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    Smarty Forum Index -> General
View previous topic :: View next topic  
Author Message
bluesapphire
Smarty Rookie


Joined: 03 Feb 2006
Posts: 5

PostPosted: Wed Feb 23, 2011 2:06 pm    Post subject: How can i access object in SMARTY tpl file Reply with quote

I have following object :
Code:

Array
(
    [iRecords] => Array
        (
            [0] => stdClass Object
                (
                    [id] => 3
                    [etid] => 3
                    [subject] => sadasd
                    [detail] => asdasd
                    [status] => 1
                )

        )

)


In PHP, Iam assigning variable as follows:
Code:

$emailType = $this->email_lib->get_email_type_by_record($edit_id);
$this->smarty->assign('emailType', $emailType['iRecords']);

I have tried following in tpl file, but it gives me error:
Code:
{$emailType.description}

How can I access different elements of object in SMARTY.

Can some one guide me in this regards.
Thanks in advance
Back to top
View user's profile Send private message
rodneyrehm
Administrator


Joined: 30 Mar 2007
Posts: 674
Location: Germany, border to Switzerland

PostPosted: Wed Feb 23, 2011 2:23 pm    Post subject: Reply with quote

iRecords contains an array NOT an object.

Code:
$emailType = $this->email_lib->get_email_type_by_record($edit_id);
$this->smarty->assign('emailType', $emailType['iRecords'][0]);


will assign the first element which can then be used by your template as you described
Back to top
View user's profile Send private message Visit poster's website
Display posts from previous:   
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    Smarty Forum Index -> General All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group
Protected by Anti-Spam ACP