2013-03-19 01:32:32 +04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Copyright (c) 2013 Bart Visscher <bartv@thisnet.nl>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OC\Template;
|
|
|
|
|
|
|
|
class TemplateFileLocator {
|
|
|
|
protected $form_factor;
|
|
|
|
protected $dirs;
|
2013-07-18 01:27:25 +04:00
|
|
|
private $path;
|
2013-03-19 01:32:32 +04:00
|
|
|
|
2014-02-06 19:30:58 +04:00
|
|
|
/**
|
|
|
|
* @param string[] $dirs
|
2014-02-19 12:31:54 +04:00
|
|
|
* @param string $form_factor
|
2014-02-06 19:30:58 +04:00
|
|
|
*/
|
2013-03-19 01:32:32 +04:00
|
|
|
public function __construct( $form_factor, $dirs ) {
|
|
|
|
$this->form_factor = $form_factor;
|
|
|
|
$this->dirs = $dirs;
|
|
|
|
}
|
|
|
|
|
2014-02-06 19:30:58 +04:00
|
|
|
/**
|
|
|
|
* @param string $template
|
|
|
|
*/
|
2013-03-19 01:32:32 +04:00
|
|
|
public function find( $template ) {
|
2013-07-19 19:40:07 +04:00
|
|
|
if ($template === '') {
|
2013-03-19 01:32:32 +04:00
|
|
|
throw new \InvalidArgumentException('Empty template name');
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach($this->dirs as $dir) {
|
|
|
|
$file = $dir.$template.$this->form_factor.'.php';
|
|
|
|
if (is_file($file)) {
|
|
|
|
$this->path = $dir;
|
|
|
|
return $file;
|
|
|
|
}
|
|
|
|
$file = $dir.$template.'.php';
|
|
|
|
if (is_file($file)) {
|
|
|
|
$this->path = $dir;
|
|
|
|
return $file;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
throw new \Exception('template file not found: template:'.$template.' formfactor:'.$this->form_factor);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getPath() {
|
|
|
|
return $this->path;
|
|
|
|
}
|
|
|
|
}
|