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

Conditional template extension

 
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
AnrDaemon
Administrator


Joined: 03 Dec 2012
Posts: 1785

PostPosted: Mon Dec 14, 2015 5:48 pm    Post subject: Conditional template extension Reply with quote

After reading the new features of Smarty 3.1.28, I got a question. Can't really try it right now, so please excuse me asking.

Let's assume we have a template like this one:
Code:
{if <condition>}
  {extends 'index-default.tpl'}
{else}
  {extends 'index-special.tpl'}
{/if}
{block …}…{/block}


How would that work?
Back to top
View user's profile Send private message
U.Tews
Administrator


Joined: 22 Nov 2006
Posts: 5068
Location: Hamburg / Germany

PostPosted: Thu Dec 17, 2015 8:26 pm    Post subject: Reply with quote

That does not work. But

Code:
{if <condition>}
  {$name = 'index-default.tpl'}
{else}
  {$name = 'index-special.tpl'}
{/if}
 {extends $name}
{block …}…{/block}
Back to top
View user's profile Send private message
AnrDaemon
Administrator


Joined: 03 Dec 2012
Posts: 1785

PostPosted: Thu Dec 17, 2015 9:14 pm    Post subject: Reply with quote

Thanks! That makes sense.
Back to top
View user's profile Send private message
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