/home/techb158/exp.abdallabala.com/application/autoload
Edit: /home/techb158/exp.abdallabala.com/application/autoload/Template.php (540B)
contents = $contents;
}
public function set($key, $value)
{
$this->values[$key] = $value;
}
public function output()
{
$output = $this->contents;
foreach ($this->values as $key => $value) {
$tagToReplace = '{{' . $key . '}}';
$output = str_replace($tagToReplace, $value, $output);
}
return $output;
}
}