mirror of
https://github.com/smarty-php/smarty.git
synced 2025-08-04 18:34:27 +02:00
- changed Smarty.php.class occurences to Smarty.class.php
This commit is contained in:
@@ -3328,7 +3328,7 @@ Bitte geben Sie einen <b>Provinznamen</b> ein.
|
||||
<programlisting>
|
||||
index.php:
|
||||
|
||||
require('Smarty.php.class');
|
||||
require('Smarty.class.php');
|
||||
$smarty = new Smarty;
|
||||
$smarty->assign('cust_ids', array(1000,1001,1002,1003));
|
||||
$smarty->assign('cust_names', array('Joe Schmoe','Jack Smith','Jane Johnson','Charlie Brown'));
|
||||
@@ -3343,7 +3343,7 @@ index.tpl:
|
||||
|
||||
index.php:
|
||||
|
||||
require('Smarty.php.class');
|
||||
require('Smarty.class.php');
|
||||
$smarty = new Smarty;
|
||||
$smarty->assign('cust_checkboxes', array(
|
||||
1000 => 'Joe Schmoe',
|
||||
@@ -3463,7 +3463,7 @@ AUSGABE: (beider Beispiele)
|
||||
<programlisting>
|
||||
index.php:
|
||||
|
||||
require('Smarty.php.class');
|
||||
require('Smarty.class.php');
|
||||
$smarty = new Smarty;
|
||||
$smarty->display('index.tpl');
|
||||
|
||||
@@ -3645,7 +3645,7 @@ AUSGABE:
|
||||
<programlisting>
|
||||
index.php:
|
||||
|
||||
require('Smarty.php.class');
|
||||
require('Smarty.class.php');
|
||||
$smarty = new Smarty;
|
||||
$smarty->assign('cust_ids', array(1000,1001,1002,1003));
|
||||
$smarty->assign('cust_names', array('Joe Schmoe','Jack Smith','Jane
|
||||
@@ -3661,7 +3661,7 @@ index.tpl:
|
||||
|
||||
index.php:
|
||||
|
||||
require('Smarty.php.class');
|
||||
require('Smarty.class.php');
|
||||
$smarty = new Smarty;
|
||||
$smarty->assign('cust_radios', array(
|
||||
1001 => 'Joe Schmoe',
|
||||
@@ -4351,7 +4351,7 @@ AUSGABE:
|
||||
<programlisting>
|
||||
index.php:
|
||||
|
||||
require('Smarty.php.class');
|
||||
require('Smarty.class.php');
|
||||
$smarty = new Smarty;
|
||||
$smarty->assign('data',array(1,2,3,4,5,6,7,8,9));
|
||||
$smarty->assign('tr',array('bgcolor="#eeeeee"','bgcolor="#dddddd"'));
|
||||
|
Reference in New Issue
Block a user