
Comparing changes: https://github.com/smarty-php/smarty/compare/v4.3.1...v4.4.1 It is noticeable that Smarty 4.3.1 does not officially support PHP 8.3. Is only supported with 4.4.0. Remark: During tests with Smarty 4.5.1, it was noticed that the following warning occurs: Deprecated: Using the unregistered function "function_exists" in a template is deprecated and will be removed in a future version. Use Smarty::registerPlugin to explicitly register a custom modifier. As of Smarty 5.X.X, templates must be revised again. The Smarty release 5.0.2 is already officially available. However, integration into FlatPress is not entirely trivial.
53 lines
1.1 KiB
Markdown
53 lines
1.1 KiB
Markdown
createData()
|
|
|
|
creates a data object
|
|
|
|
Description
|
|
===========
|
|
|
|
string
|
|
|
|
createData
|
|
|
|
object
|
|
|
|
parent
|
|
|
|
string
|
|
|
|
createData
|
|
|
|
This creates a data object which will hold assigned variables. It uses
|
|
the following parameters:
|
|
|
|
- `parent` is an optional parameter. It is an uplink to the main
|
|
Smarty object, a another user-created data object or to user-created
|
|
template object. These objects can be chained. Templates can access
|
|
variables assigned to any of the objects in it\'s parent chain.
|
|
|
|
Data objects are used to create scopes for assigned variables. They can
|
|
be used to control which variables are seen by which templates.
|
|
|
|
|
|
<?php
|
|
include('Smarty.class.php');
|
|
$smarty = new Smarty;
|
|
|
|
// create data object with its private variable scope
|
|
$data = $smarty->createData();
|
|
|
|
// assign variable to data scope
|
|
$data->assign('foo','bar');
|
|
|
|
// create template object which will use variables from data object
|
|
$tpl = $smarty->createTemplate('index.tpl',$data);
|
|
|
|
// display the template
|
|
$tpl->display();
|
|
?>
|
|
|
|
|
|
|
|
See also [`display()`](#api.display), and
|
|
[`createTemplate()`](#api.create.template),
|