bst/webapp/fx/web/WebPage.inc.php
2023-10-31 00:21:50 -04:00

23 lines
311 B
PHP

<?php
namespace MBS\Web;
class WebPage
{
public $Path;
public $Function;
public function __construct($path, $func)
{
$this->Path = $path;
$this->Function = $func;
}
public function Render()
{
if (is_callable($this->Function))
{
call_user_func($this->Function);
}
}
}
?>