mirror of
https://github.com/smarty-php/smarty.git
synced 2025-08-05 02:44:27 +02:00
- changed Smarty.php.class occurences to Smarty.class.php
This commit is contained in:
@@ -3727,7 +3727,7 @@ You must supply a <b>state</b>.
|
|||||||
<programlisting>
|
<programlisting>
|
||||||
index.php:
|
index.php:
|
||||||
|
|
||||||
require('Smarty.php.class');
|
require('Smarty.class.php');
|
||||||
$smarty = new Smarty;
|
$smarty = new Smarty;
|
||||||
$smarty->assign('cust_ids', array(1000,1001,1002,1003));
|
$smarty->assign('cust_ids', array(1000,1001,1002,1003));
|
||||||
$smarty->assign('cust_names', array('Joe Schmoe','Jack Smith','Jane Johnson','Charlie Brown'));
|
$smarty->assign('cust_names', array('Joe Schmoe','Jack Smith','Jane Johnson','Charlie Brown'));
|
||||||
@@ -3742,7 +3742,7 @@ index.tpl:
|
|||||||
|
|
||||||
index.php:
|
index.php:
|
||||||
|
|
||||||
require('Smarty.php.class');
|
require('Smarty.class.php');
|
||||||
$smarty = new Smarty;
|
$smarty = new Smarty;
|
||||||
$smarty->assign('cust_checkboxes', array(
|
$smarty->assign('cust_checkboxes', array(
|
||||||
1000 => 'Joe Schmoe',
|
1000 => 'Joe Schmoe',
|
||||||
@@ -3865,7 +3865,7 @@ OUTPUT: (both examples)
|
|||||||
<programlisting>
|
<programlisting>
|
||||||
index.php:
|
index.php:
|
||||||
|
|
||||||
require('Smarty.php.class');
|
require('Smarty.class.php');
|
||||||
$smarty = new Smarty;
|
$smarty = new Smarty;
|
||||||
$smarty->display('index.tpl');
|
$smarty->display('index.tpl');
|
||||||
|
|
||||||
@@ -3969,7 +3969,7 @@ OUTPUT: (possible)
|
|||||||
<programlisting>
|
<programlisting>
|
||||||
index.php:
|
index.php:
|
||||||
|
|
||||||
require('Smarty.php.class');
|
require('Smarty.class.php');
|
||||||
$smarty = new Smarty;
|
$smarty = new Smarty;
|
||||||
$smarty->assign('cust_ids', array(1000,1001,1002,1003));
|
$smarty->assign('cust_ids', array(1000,1001,1002,1003));
|
||||||
$smarty->assign('cust_names', array('Joe Schmoe','Jack Smith','Jane
|
$smarty->assign('cust_names', array('Joe Schmoe','Jack Smith','Jane
|
||||||
@@ -3986,7 +3986,7 @@ index.tpl:
|
|||||||
|
|
||||||
index.php:
|
index.php:
|
||||||
|
|
||||||
require('Smarty.php.class');
|
require('Smarty.class.php');
|
||||||
$smarty = new Smarty;
|
$smarty = new Smarty;
|
||||||
$smarty->assign('cust_options', array(
|
$smarty->assign('cust_options', array(
|
||||||
1001 => 'Joe Schmoe',
|
1001 => 'Joe Schmoe',
|
||||||
@@ -4093,7 +4093,7 @@ OUTPUT: (both examples)
|
|||||||
<programlisting>
|
<programlisting>
|
||||||
index.php:
|
index.php:
|
||||||
|
|
||||||
require('Smarty.php.class');
|
require('Smarty.class.php');
|
||||||
$smarty = new Smarty;
|
$smarty = new Smarty;
|
||||||
$smarty->assign('cust_ids', array(1000,1001,1002,1003));
|
$smarty->assign('cust_ids', array(1000,1001,1002,1003));
|
||||||
$smarty->assign('cust_names', array('Joe Schmoe','Jack Smith','Jane
|
$smarty->assign('cust_names', array('Joe Schmoe','Jack Smith','Jane
|
||||||
@@ -4109,7 +4109,7 @@ index.tpl:
|
|||||||
|
|
||||||
index.php:
|
index.php:
|
||||||
|
|
||||||
require('Smarty.php.class');
|
require('Smarty.class.php');
|
||||||
$smarty = new Smarty;
|
$smarty = new Smarty;
|
||||||
$smarty->assign('cust_radios', array(
|
$smarty->assign('cust_radios', array(
|
||||||
1001 => 'Joe Schmoe',
|
1001 => 'Joe Schmoe',
|
||||||
@@ -4824,7 +4824,7 @@ OUTPUT:
|
|||||||
<programlisting>
|
<programlisting>
|
||||||
index.php:
|
index.php:
|
||||||
|
|
||||||
require('Smarty.php.class');
|
require('Smarty.class.php');
|
||||||
$smarty = new Smarty;
|
$smarty = new Smarty;
|
||||||
$smarty->assign('data',array(1,2,3,4,5,6,7,8,9));
|
$smarty->assign('data',array(1,2,3,4,5,6,7,8,9));
|
||||||
$smarty->assign('tr',array('bgcolor="#eeeeee"','bgcolor="#dddddd"'));
|
$smarty->assign('tr',array('bgcolor="#eeeeee"','bgcolor="#dddddd"'));
|
||||||
|
@@ -3599,7 +3599,7 @@ Vous devez sp
|
|||||||
<programlisting>
|
<programlisting>
|
||||||
index.php:
|
index.php:
|
||||||
|
|
||||||
require('Smarty.php.class');
|
require('Smarty.class.php');
|
||||||
$smarty = new Smarty;
|
$smarty = new Smarty;
|
||||||
$smarty->assign('id_client', array(1000,1001,1002,1003));
|
$smarty->assign('id_client', array(1000,1001,1002,1003));
|
||||||
$smarty->assign('cust_names', array('Joe Schmoe','Jack Smith','Jane
|
$smarty->assign('cust_names', array('Joe Schmoe','Jack Smith','Jane
|
||||||
@@ -3615,7 +3615,7 @@ index.tpl:
|
|||||||
|
|
||||||
index.php:
|
index.php:
|
||||||
|
|
||||||
require('Smarty.php.class');
|
require('Smarty.class.php');
|
||||||
$smarty = new Smarty;
|
$smarty = new Smarty;
|
||||||
$smarty->assign('cust_checkboxes', array(
|
$smarty->assign('cust_checkboxes', array(
|
||||||
1001 => 'Joe Schmoe',
|
1001 => 'Joe Schmoe',
|
||||||
@@ -3733,7 +3733,7 @@ SORTIE: (pour les deux exemples)
|
|||||||
<programlisting>
|
<programlisting>
|
||||||
index.php:
|
index.php:
|
||||||
|
|
||||||
require('Smarty.php.class');
|
require('Smarty.class.php');
|
||||||
$smarty = new Smarty;
|
$smarty = new Smarty;
|
||||||
$smarty->display('index.tpl');
|
$smarty->display('index.tpl');
|
||||||
|
|
||||||
@@ -3838,7 +3838,7 @@ SORTIE: (possible)
|
|||||||
<programlisting>
|
<programlisting>
|
||||||
index.php:
|
index.php:
|
||||||
|
|
||||||
require('Smarty.php.class');
|
require('Smarty.class.php');
|
||||||
$smarty = new Smarty;
|
$smarty = new Smarty;
|
||||||
$smarty->assign('id_client', array(1000,1001,1002,1003));
|
$smarty->assign('id_client', array(1000,1001,1002,1003));
|
||||||
$smarty->assign('nom_client', array('Joe Schmoe','Jack Smith','Jane
|
$smarty->assign('nom_client', array('Joe Schmoe','Jack Smith','Jane
|
||||||
@@ -3855,7 +3855,7 @@ index.tpl:
|
|||||||
|
|
||||||
index.php:
|
index.php:
|
||||||
|
|
||||||
require('Smarty.php.class');
|
require('Smarty.class.php');
|
||||||
$smarty = new Smarty;
|
$smarty = new Smarty;
|
||||||
$smarty->assign('cust_options', array(
|
$smarty->assign('cust_options', array(
|
||||||
1001 => 'Joe Schmoe',
|
1001 => 'Joe Schmoe',
|
||||||
@@ -3968,7 +3968,7 @@ SORTIE: (valable pour les deux exemples)
|
|||||||
<programlisting>
|
<programlisting>
|
||||||
index.php:
|
index.php:
|
||||||
|
|
||||||
require('Smarty.php.class');
|
require('Smarty.class.php');
|
||||||
$smarty = new Smarty;
|
$smarty = new Smarty;
|
||||||
$smarty->assign('id_client', array(1000,1001,1002,1003));
|
$smarty->assign('id_client', array(1000,1001,1002,1003));
|
||||||
$smarty->assign('nom_client', array('Joe Schmoe','Jack Smith','Jane
|
$smarty->assign('nom_client', array('Joe Schmoe','Jack Smith','Jane
|
||||||
@@ -3984,7 +3984,7 @@ index.tpl:
|
|||||||
|
|
||||||
index.php:
|
index.php:
|
||||||
|
|
||||||
require('Smarty.php.class');
|
require('Smarty.class.php');
|
||||||
$smarty = new Smarty;
|
$smarty = new Smarty;
|
||||||
$smarty->assign('cust_radios', array(
|
$smarty->assign('cust_radios', array(
|
||||||
1001 => 'Joe Schmoe',
|
1001 => 'Joe Schmoe',
|
||||||
@@ -4698,7 +4698,7 @@ SORTIE:
|
|||||||
<programlisting>
|
<programlisting>
|
||||||
index.php:
|
index.php:
|
||||||
|
|
||||||
require('Smarty.php.class');
|
require('Smarty.class.php');
|
||||||
$smarty = new Smarty;
|
$smarty = new Smarty;
|
||||||
$smarty->assign('data',array(1,2,3,4,5,6,7,8,9));
|
$smarty->assign('data',array(1,2,3,4,5,6,7,8,9));
|
||||||
$smarty->assign('tr',array('bgcolor="#eeeeee"','bgcolor="#dddddd"'));
|
$smarty->assign('tr',array('bgcolor="#eeeeee"','bgcolor="#dddddd"'));
|
||||||
|
Reference in New Issue
Block a user