Silverstripe 3 列出特定文件夹中的所有模板(.ss - 文件)

Silverstripe 3 list all templates (.ss - files) in a specific folder

Silverstripe 3 中是否有现成的函数来获取特定文件夹中的所有模板以将它们放入 Arraylist 中?

如果没有,有人做过吗?

我的目标是从下拉菜单或单选按钮集中选择模板。

或者我应该用...

$files = glob("/path/to/directory/*.ss");

谢谢。 sepp.

用户表单模块 does this 用于显示可能的收件人电子邮件模板列表。这是相关部分:

$templates = [];
$finder = new SS_FileFinder();
$finder->setOption('name_regex', '/^.*\.ss$/');
$found = $finder->find(BASE_PATH . '/path/to/directory');
foreach ($found as $key => $value) {
    $template = pathinfo($value);
    $templates[$template['filename']] = $template['filename'];
}