- Smarty 4.1.1 → 4.5.6 (behebt dynamic property deprecations) - Core-Klassen: #[\AllowDynamicProperties] für Admin_role, base, Config, Customer, Customer_group, CustomerGroups, Item, Structure, website - website.class.php: counts[parent_id] initialisieren vor ++ (PHP 8.1) - layout.class.php: HTTP_ACCEPT_LANGUAGE mit isset-Guard - website_init.php: session_status()-Check vor session_start - .htaccess: HTTPS-Redirect via X-Forwarded-Proto (statt SERVER_PORT) - themes/easyshop_advanced/media/: Parent-Theme-Assets nachgezogen - .gitignore: smarty.4.1.1.bak ausschließen
1.1 KiB
$plugins_dir
This is the directory or directories where Smarty will look for the
plugins that it needs. Default is plugins/ under the
SMARTY_DIR. If you supply a relative path,
Smarty will first look under the SMARTY_DIR,
then relative to the current working directory, then relative to the PHP
include_path. If $plugins_dir is an array of directories, Smarty will
search for your plugin in each plugin directory in the order they are
given.
Note
For best performance, do not setup your
$plugins_dirto have to use the PHP include path. Use an absolute pathname, or a path relative toSMARTY_DIRor the current working directory.
Note
As of Smarty 3.1 the attribute $plugins_dir is no longer accessible directly. Use
getPluginsDir(),setPluginsDir()andaddPluginsDir()instead.
See also getPluginsDir(),
setPluginsDir() and
addPluginsDir().