Files
rockowa.com/autoload/front/view/class.Page.php
2023-05-08 09:03:09 +02:00

14 lines
192 B
PHP

<?php
namespace front\view;
class Page {
public function show()
{
$layout = \front\factory\Page::getActiveLayout();
return \front\factory\Page::convertPage( $layout );
}
}
?>