demo update
All checks were successful
Build and push / Pulling repo on server (push) Successful in 2s
All checks were successful
Build and push / Pulling repo on server (push) Successful in 2s
This commit is contained in:
@ -237,4 +237,20 @@ function pictshareUploadImage($path,$hash=false)
|
||||
curl_close($request);
|
||||
|
||||
return $json;
|
||||
}
|
||||
|
||||
function partial($name,$variables=[])
|
||||
{
|
||||
$templatefile = ROOT.DS.'templates'.DS.'partials'.DS.$name;
|
||||
|
||||
//render template by running include
|
||||
ob_start();
|
||||
if(is_array($variables))
|
||||
extract($variables);
|
||||
if(file_exists($templatefile))
|
||||
include($templatefile);
|
||||
$pagecontent = ob_get_contents();
|
||||
ob_end_clean();
|
||||
|
||||
return $pagecontent;
|
||||
}
|
Reference in New Issue
Block a user