function(string $file)
{
if (is_file($file)) {
$this->template = file_get_contents($file);
$this->path = X::dirname($file);
}
else {
$this->template = $file;
$this->path = BBN_DATA_PATH;
}
return $this;
}