Changed OrderFiles; name is now dropdown of predefined types; Certain
types send emails
This commit is contained in:
@@ -53,10 +53,18 @@ class mfLayout {
|
||||
return $this->returnValue;
|
||||
}
|
||||
|
||||
private function getTplPath() {
|
||||
return VIEWDIR . "/" . $this->package . "/" . $this->template . ".php";
|
||||
}
|
||||
|
||||
public function templatePathExists() {
|
||||
return file_exists($this->getTplPath());
|
||||
}
|
||||
|
||||
public function render() {
|
||||
$this->defaultLayoutvariables();
|
||||
|
||||
$tpl_path = VIEWDIR . "/" . $this->package . "/" . $this->template . ".php";
|
||||
$tpl_path = $this->getTplPath();
|
||||
if(!is_file($tpl_path)) {
|
||||
$tpl_path = VIEWDIR . "/default/" . $this->template . ".php";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user