Files
inwestprofil.fr/autoload/front/view/class.Search.php
2023-05-29 16:01:03 +02:00

19 lines
338 B
PHP

<?php
namespace front\view;
class Search
{
public static function search_results( $articles )
{
$tpl = new \Tpl;
$tpl -> articles = $articles;
return $tpl -> render( 'search/search-results' );
}
public static function search_form()
{
$tpl = new \Tpl;
return $tpl -> render( 'search/search-form' );
}
}