Tagged Questions
Smarty is a template engine for PHP. It enables programmers and web-designers to implement the MVC architecture pattern. The templates created can be re-used very easily.
31
votes
19answers
2k views
Why should I use templating system in PHP?
Why should I use templating system in PHP?
The reasoning behind my question is: PHP itself is feature rich templating system, why should I install another template engine?
The only two pros I found ...
30
votes
18answers
3k views
Smarty, the best choice?
We are developing a huge website, it will get lots of traffic, right now we are analyzing our options and Smarty looks nice but i have seen lots of flames about this, some love it some hate it.
What ...
18
votes
5answers
10k views
How to Debug Variables in Smarty like in PHP var_dump()
I have some variables inside a template and i dont know where i assigned them, so i need to know what inside this variable is
say i have a var in smarty called member
i tryed with {debug} but it ...
15
votes
8answers
14k views
Smarty plugin for NetBeans
I am looking plugin for work with Smarty in NetBeans.
I need coloring of my code and normal syntax analysys.
I could find only this plugin: Smarty Editor, but I could not make it work.
Can you ...
10
votes
2answers
77 views
Smarty Modifier filesize
I am using Smarty and one of my section shows file names, including dates, file size, last access etc...
I want to display the size of the file in K if less then 1024, in Mb if less than 1048576 ...
10
votes
4answers
292 views
About ![CDATA[, what is it? [closed]
Possible Duplicate:
what is the meaning of CDATA
What is, and when is used the ![CDATA[ string/variable/constant? (I don't know what is it)
8
votes
2answers
678 views
Checking for PHP session without starting one?
Is it possible to check for a session with out starting one?
The reason that I ask is, the app I am developing has an integrated admin interface. So when an admin is logged in they browse the same ...
6
votes
2answers
143 views
How to write my very own Smarty If-case
I am writing my own administration and, off course I am using Smarty.
Now, what I would like to do is to add a access check function much similar to the {if} tag.
What I would like to write is:
...
5
votes
1answer
108 views
Smarty cut string to add dots
I have this code:
{if $data|@count gt 0}
{section name=field loop=$data}
{$data[field].description|substr:0:120}...
<hr/>
{/section}
{/if}
It shows abc123 abc123 a....
How ...
5
votes
2answers
958 views
Smarty and Kohana
Is there a standard "official" way of using Smarty with Kohana 3? I see there are some options that seem less than ideal and will probably break when either Smarty or Kohana's minor version number ...
5
votes
8answers
716 views
Why do almost all PHP framework use “<?php echo … ?>”
The PHP short tag <?= $var ?> has been deprecated for a while.
Almost all PHP frameworks use the long form <?php echo $var ?> (e.g., symphony, Yii, Kohana)
Smarty is a famous PHP ...
5
votes
3answers
7k views
How to assign an array within a smarty template file?
I was wondering if it was possible to assign an array to a variable within a Smarty template file? I have tried this
{assign var='file' value = array('dir','doc','exe')}
But when I print out the ...
5
votes
1answer
1k views
PHPDocumentor date problem warnings
I'm having some issues getting phpdoc to run correctly. The docs are being generated for the most part successfully, but I get the following warning many times:
Warning: date(): It is not safe to
...
5
votes
7answers
18k views
What is .tpl files? php, web design
A man wants me to redesign a site run in PHP (VideoCMS). But when I asked him to send me the source he has given me *.tpl files instead of *.php. There is some code inside them:
{include ...
5
votes
4answers
17k views
Smarty: How to reference to the associative array index
Array $imagelist:
Array (
[additional] => Array (
[count] => 2
[image] => Array (
[nokia_e61_1.jpg] => Array (
[name_body] => nokia_e61_1
...
5
votes
10answers
3k views
Smarty benchmark, anyone?
I am considering Smarty as my web app templating solution, and I am now concerned with its performance against plain PHP.
The Smarty site says it should be the same, however, I was not able to find ...
4
votes
2answers
54 views
smarty section loop
I am trying to get a loop for following...
{$product.min_val} //2
{$product.max_val} //8
and i am trying following...
{section name=val start=$product.min_val loop=$product.max_val step=0}
<p ...
4
votes
1answer
103 views
Counter inside iterate smarty loop
I have this smarty code :
{iterate from=fruits item=fruit}
....
{/iterate}
I want to have a counter inside this loop that accept a start value and increase by one until the loop continues.
I ...
4
votes
2answers
266 views
Smarty “capitalize” modifier… always capitalizes “L”? … and “P”?
Quite simply: I'm using Smarty and the |capitalize modifier. It works fine, but when I pass any word with l in it, it capitalizes it, even if it's not at the beginning of the word.
What why?
EDIT: ...
4
votes
2answers
2k views
How to convert float to int in smarty
As i am new to smarty, I am not at able to convert floating number to int.
Ex: 12.234 => 12
please help me if u find any solution
4
votes
4answers
4k views
How can I increment a Smarty variable?
I am not usually a Smarty guy, so I'm a bit stuck.
I want to echo the index of an array, but I want to increment it each time I echo it.
This is what I have...
<ul>
{foreach from=$gallery ...
4
votes
1answer
397 views
PHP/Smarty - How to check an array for objects with specific values, and create temp array of those objects
First-timer here, I hope I explain this well enough...
PHP/Smarty, I'm working on a section of a page that displays bullet lists of notes associated with either the general page, or individual places ...
4
votes
5answers
598 views
What's the difference between Smarty and Zend?
I came upon Smarty which is a template engine. But there are also the Zend, CakePHP frameworks. Is Smarty like Zend, or are they completely different? Smarty just separates logic from display - is ...
4
votes
1answer
674 views
Smarty echo of array variable with “-” in its name
I have variable that in PHP controller looks like
$data['content']['mods']['HTML-FORM-END']['html']
It is passed nicely in smarty, but when I try to show it any of these ways, it shows either 0 ...
4
votes
3answers
170 views
If I am using CAKEphp do I need to use smartytemplates too?
If I am using CAKEphp do I need to use smartytemplates too?
4
votes
1answer
4k views
Concatenation string with variable in smarty
I need in smarty template to transmit to function concatenated string constant with variable value, How can i do it?
some example code:
{$obj->calledFunc('string const').$var}
but . operator ...
4
votes
2answers
436 views
smarty Debugging Console
how to view Debugging Console not in popup window?
prefer in same window.
any idea?
4
votes
9answers
3k views
Understanding Smarty and MVC Frameworks
I just created this thread to discuss with people who have adopted the smarty system, and how many time it took to you to understand it, because i just can't get the idea, instead of making every ...
4
votes
2answers
1k views
What is the best way to cache files in php?
i'm using Smarty with my php code and i like to cache some of website pages so i used the following code :
// TOP of script
ob_start(); // start the output buffer
$cachefile ...
4
votes
10answers
4k views
how to use Smarty better with PHP?
I found that using Smarty with PHP, sometimes extra time will need to be used for
1) using quite different syntax than PHP itself
2) need to check small cases, because documentation doesn't give ...
4
votes
2answers
6k views
Print all variables available in a Smarty template
How do you print all variables available in the context of a Smarty template? Something like the Django debug trace that lists everything being passed.
Thanks
4
votes
3answers
3k views
Smarty Vs. Javascript/AJAX
I have a doubt: -
Is there any standard/convention that when should I use "Smarty templating" and when should I use Javascript Ajax calls to produce the content? I can use Ajax/Javascript calls to ...
3
votes
1answer
185 views
Using Switch case in smarty?
I am working on Smarty website. I have searched the web to find whether i can use switch case with smarty or not. But i cannot able to find any useful links for this.
is it possible to use Switch ...
3
votes
2answers
82 views
Unique HTML id's via a PHP loop
First, I'm new to form and looking forward to all your insight.
My issue: I'm building a small site and I've run into a problem generating unique HTML ids. I'm generating the HTML via a loop in PHP, ...
3
votes
1answer
155 views
Is there a i18n/translation solution for Smarty?
I'm developing a PHP-based application that requires internationalization (i18n) support.
I'm using Smarty 3 as a template solution (and TinyMVC as the framework), and although I've been using it for ...
3
votes
5answers
256 views
How to integrate smarty in cakephp 1.2?
Can any1 suggest me some good and COMPLETE documentation on integrating smarty templates in cakephp 1.2 and which version of smarty should I use with cakephp 1.2?
3
votes
1answer
158 views
Zend_Layout and/or Smarty
I am new to Zend Framework, but planning to create quite a complex project using it.
I was looking at the view options for Zend Framework. There is one with Zend_View and Zend_Layout and also ...
3
votes
1answer
221 views
3
votes
1answer
120 views
Passing an array as a parameter in a custom function
Hey,
I was wondering if it was possible to pass an associative array as a parameter in a custom function. This is my scenario:
In the php file I set the array:
$dataArr = ...
3
votes
1answer
54 views
What's the naming convention of a lexer?
function yy_r9_1($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_PHP_CODE;
$this->yypopstate();
}
The above is from the lexer of smarty in PHP,anyone ...
3
votes
4answers
245 views
What does it take to make a CMS template work on a normal website
A PHP content management system usually has its own template engine be it smarty or some other custom template engine specific for that CMS. How might I possibly get a CMS theme to work on a normal ...
3
votes
2answers
235 views
Converting tree-like object structure into an array and interating the whole thing
I have a tree-like object structure that consists of two types of objects:
object of class Category
object of class CategoryLink
The structure is the following:
The whole story begins with an ...
3
votes
2answers
2k views
smarty and date
i get date with: {$smarty.now|date_format:'%Y-%m-%d %H:%M:%S'}
But how get 20 day after?
If now: 2010 05 05 12:12:12, i wish show 2010 25 05 12:12:12
3
votes
4answers
418 views
Smarty array with dot in key
I have an array in PHP that looks like this:
$config['detailpage.var1']
$config['detailpage.var2']
$config['otherpage.var2']
$config['otherpage.var2']
...
To access it in Smarty I would do
...
3
votes
2answers
1k views
Formatting numbers with thousands separator Smarty PHP
Im trying to format numbers with thousands separator Smarty.
So for example 1000 becomes 1,000.
Thanks.
3
votes
1answer
630 views
how to make smarty's display function return to a variable
In smarty is it possible or is there any kind of function to render a template and return the result?
for example:
$rendered_content = $smarty->render("content.html")
3
votes
3answers
955 views
Smarty multiple random numbers list
Hey Stackoverflow-Folks,
is there any smart way to post random numbers (e.g. 1-4) in a list by using the smarty tpl-engine?
standart list sorted 1-5:
<ul>
<li>1</li>
...
3
votes
6answers
4k views
still need smarty syntax highlighting in Eclipse PDT
How do I get smarty syntax highlighting in Eclipse PDT?
The only project I was able to find is SmartyPDT, but it's outdated and isn't working with my current Eclipse install (PDT All in one, with ...
3
votes
2answers
2k views
Jquery with SMARTY and JSON
table department(department_id, name)
table category(category_id, department_id, name)
I want to implement the idea that when i change department in drop down list, all categories will change ...
3
votes
3answers
3k views
Break in Smarty's / Dwoo's foreach
About break
foreach ( $data as $k => $v ) {
if ( $k == 4 ) {
break;
}
}
every one knows.
Is there something similar in Smarty's or Dwoo's {foreach} function ?