Lines Matching defs:dirname
26 * @param string $dirname Name of the directory where the translations files are located
28 public function __construct(array $lang = [], string $dirname = '')
30 if (empty($dirname))
32 $dirname = __DIR__ . '/../../resources/*/*.php';
34 else if (!\is_dir($dirname) || !\is_readable($dirname))
40 $dirname = \rtrim($dirname, '/');
41 $dirname .= '/*/*.php';
47 foreach (\glob($dirname) as $file)