mirror of
https://github.com/smarty-php/smarty.git
synced 2025-07-02 02:11:00 +02:00
32 lines
535 B
Markdown
32 lines
535 B
Markdown
![]() |
getPluginsDir()
|
||
|
|
||
|
return the directory where plugins are stored
|
||
|
|
||
|
Description
|
||
|
===========
|
||
|
|
||
|
array
|
||
|
|
||
|
getPluginsDir
|
||
|
|
||
|
|
||
|
<?php
|
||
|
|
||
|
// set some plugins directories
|
||
|
$smarty->setPluginsDir(array(
|
||
|
'./plugins',
|
||
|
'./plugins_2',
|
||
|
));
|
||
|
|
||
|
// get all directories where plugins are stored
|
||
|
$config_dir = $smarty->getPluginsDir();
|
||
|
var_dump($config_dir); // array
|
||
|
|
||
|
?>
|
||
|
|
||
|
|
||
|
|
||
|
See also [`setPluginsDir()`](#api.set.plugins.dir),
|
||
|
[`addPluginsDir()`](#api.add.plugins.dir) and
|
||
|
[`$plugins_dir`](#variable.plugins.dir).
|