اسمارتی. Smarty Template Engine

saalek110

Well-Known Member
با تشکر از bahy_my بابت آموزش خوبشان.


 

saalek110

Well-Known Member
سالک: من رفتم سایت اسمارتی با لینک زیر:




و ورژن آخر را دانلود کردم. و دو پوشه libs و demo را در هاست خود آپلود کردم و فایل index.php در پوشه دمو را اجرا کردم.
داریم:
کد:
                    Title: Welcome To Smarty!
      
    The current date and time is 2024-01-29 22:40:17

    The value of global assigned variable $SCRIPT_NAME is /base/demo/index.php

    Example of accessing server environment variable SERVER_NAME: saalek110.great-site.net

    The value of {$Name} is Fred Irving Johnathan Bradley Peppergill

variable modifier example of {$Name|upper}

FRED IRVING JOHNATHAN BRADLEY PEPPERGILL


An example of a section loop:

                        1 * John Doe
                                    2 * Mary Smith
                                    3 . James Johnson
                                    4 . Henry Case
              
    An example of section looped key values:

            phone: 1
      


            fax: 2
      


            cell: 3
      

            phone: 555-4444
      


            fax: 555-3333
      


            cell: 760-1234
      

      


        testing strip tags
      
This is a test



This is an example of the html_select_date function:

January
 
29
 
1998
This is an example of the html_select_time function:

 
PM
This is an example of the html_options function:

Nebraska


بهتره عکسش را ببینید، در حالت کد خوب درنیامد:

Screenshot_۲۰۲۴-۰۱-۲۹_۲۲۴۴۵۸.jpg
 

saalek110

Well-Known Member
کد فایل index.php که نمایش اون را در پست قبل دیدید ، این است:
PHP:
<?php
/**
 * Example Application
 *
 * @package Example-application
 */
require '../libs/Smarty.class.php';
$smarty = new Smarty;
//$smarty->force_compile = true;
$smarty->debugging = true;
$smarty->caching = true;
$smarty->cache_lifetime = 120;
$smarty->assign("Name", "Fred Irving Johnathan Bradley Peppergill", true);
$smarty->assign("FirstName", array("John", "Mary", "James", "Henry"));
$smarty->assign("LastName", array("Doe", "Smith", "Johnson", "Case"));
$smarty->assign(
    "Class",
    array(
        array("A", "B", "C", "D"),
        array("E", "F", "G", "H"),
        array("I", "J", "K", "L"),
        array("M", "N", "O", "P")
    )
);
$smarty->assign(
    "contacts",
    array(
        array("phone" => "1", "fax" => "2", "cell" => "3"),
        array("phone" => "555-4444", "fax" => "555-3333", "cell" => "760-1234")
    )
);
$smarty->assign("option_values", array("NY", "NE", "KS", "IA", "OK", "TX"));
$smarty->assign("option_output", array("New York", "Nebraska", "Kansas", "Iowa", "Oklahoma", "Texas"));
$smarty->assign("option_selected", "NE");
$smarty->display('index.tpl');
 

saalek110

Well-Known Member
کد index.tpl اینه:
HTML:
{config_load file="test.conf" section="setup"}
{include file="header.tpl" title=foo}

<PRE>

{* bold and title are read from the config file *}
    {if #bold#}<b>{/if}
        {* capitalize the first letters of each word of the title *}
        Title: {#title#|capitalize}
        {if #bold#}</b>{/if}

    The current date and time is {$smarty.now|date_format:"%Y-%m-%d %H:%M:%S"}

    The value of global assigned variable $SCRIPT_NAME is {$SCRIPT_NAME}

    Example of accessing server environment variable SERVER_NAME: {$smarty.server.SERVER_NAME}

    The value of {ldelim}$Name{rdelim} is <b>{$Name}</b>

variable modifier example of {ldelim}$Name|upper{rdelim}

<b>{$Name|upper}</b>


An example of a section loop:

    {section name=outer
    loop=$FirstName}
        {if $smarty.section.outer.index is odd by 2}
            {$smarty.section.outer.rownum} . {$FirstName[outer]} {$LastName[outer]}
        {else}
            {$smarty.section.outer.rownum} * {$FirstName[outer]} {$LastName[outer]}
        {/if}
        {sectionelse}
        none
    {/section}

    An example of section looped key values:

    {section name=sec1 loop=$contacts}
        phone: {$contacts[sec1].phone}
        <br>

            fax: {$contacts[sec1].fax}
        <br>

            cell: {$contacts[sec1].cell}
        <br>
    {/section}
    <p>

        testing strip tags
        {strip}
<table border=0>
    <tr>
        <td>
            <A HREF="{$SCRIPT_NAME}">
                <font color="red">This is a test </font>
            </A>
        </td>
    </tr>
</table>
    {/strip}

</PRE>

This is an example of the html_select_date function:

<form>
    {html_select_date start_year=1998 end_year=2010}
</form>

This is an example of the html_select_time function:

<form>
    {html_select_time use_24_hours=false}
</form>

This is an example of the html_options function:

<form>
    <select name=states>
        {html_options values=$option_values selected=$option_selected output=$option_output}
    </select>
</form>

{include file="footer.tpl"}
 

saalek110

Well-Known Member
این هم فایل header.tpl:
HTML:
<HTML>
<HEAD>
<TITLE>{$title} - {$Name}</TITLE>
</HEAD>
<BODY bgcolor="#ffffff">

و این هم footer.tpl
HTML:
</BODY>
</HTML>
 

saalek110

Well-Known Member
روش افزودن css به اسمارتی:


من تست نکردم ، فقط فعلا لینک اینجا گذاشتم.
 

جدیدترین ارسال ها

بالا