2013-03-18 17:32:32 -04:00
|
|
|
<?php
|
2024-05-23 03:26:56 -04:00
|
|
|
|
2013-03-18 17:32:32 -04:00
|
|
|
/**
|
2024-05-23 03:26:56 -04:00
|
|
|
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
|
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
2013-03-18 17:32:32 -04:00
|
|
|
*/
|
|
|
|
|
namespace OC\Template;
|
|
|
|
|
|
|
|
|
|
class TemplateFileLocator {
|
|
|
|
|
protected $dirs;
|
2013-07-17 17:27:25 -04:00
|
|
|
private $path;
|
2013-03-18 17:32:32 -04:00
|
|
|
|
2014-02-06 10:30:58 -05:00
|
|
|
/**
|
|
|
|
|
* @param string[] $dirs
|
|
|
|
|
*/
|
2020-04-09 07:53:40 -04:00
|
|
|
public function __construct($dirs) {
|
2013-03-18 17:32:32 -04:00
|
|
|
$this->dirs = $dirs;
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-06 10:30:58 -05:00
|
|
|
/**
|
|
|
|
|
* @param string $template
|
2014-10-06 06:38:59 -04:00
|
|
|
* @return string
|
|
|
|
|
* @throws \Exception
|
2014-02-06 10:30:58 -05:00
|
|
|
*/
|
2020-04-09 07:53:40 -04:00
|
|
|
public function find($template) {
|
2013-07-19 11:40:07 -04:00
|
|
|
if ($template === '') {
|
2013-03-18 17:32:32 -04:00
|
|
|
throw new \InvalidArgumentException('Empty template name');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
foreach ($this->dirs as $dir) {
|
|
|
|
|
$file = $dir.$template.'.php';
|
|
|
|
|
if (is_file($file)) {
|
|
|
|
|
$this->path = $dir;
|
|
|
|
|
return $file;
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-11-12 06:37:50 -05:00
|
|
|
throw new \Exception('template file not found: template:'.$template);
|
2013-03-18 17:32:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function getPath() {
|
|
|
|
|
return $this->path;
|
|
|
|
|
}
|
|
|
|
|
}
|