Files
rank24.pl/autoload/view/class.PagePanel.php
2024-12-12 15:33:18 +01:00

21 lines
544 B
PHP

<?php
namespace view;
class PagePanel {
public function show( $add = false , $save = false , $cancel = false , $form = 'formularz' , $back = false , $update = false , $save_ajax = false, $checkbox = false )
{
$tpl = new \Savant3();
$tpl -> _add = $add;
$tpl -> _save = $save;
$tpl -> _cancel = $cancel;
$tpl -> _id_form = $form;
$tpl -> _back = $back;
$tpl -> _update = $update;
$tpl -> _save_ajax = $save_ajax;
$tpl -> _checkbox = $checkbox;
return $tpl -> fetch( 'other/page-panel' );
}
}
?>