4_15_2019 update
This commit is contained in:
@@ -12,13 +12,16 @@ class DesignerModel extends Model {
|
||||
}
|
||||
|
||||
function selectTemplatePaths($templateid){
|
||||
$i = DB::table('template_paths')->where('HashTemplateCode', $templateid)
|
||||
$i = DB::table('template_paths')
|
||||
->where('HashTemplateCode', $templateid)
|
||||
->where('IsActive', 'TRUE')
|
||||
->get();
|
||||
return $i;
|
||||
}
|
||||
|
||||
function selectTemplatePathsByTemplateCode($templateid){
|
||||
$i = DB::table('template_paths')->where('TemplateCode', $templateid)
|
||||
->where('IsActive', 'TRUE')
|
||||
->get();
|
||||
return $i;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user