ver. 0.279: Newsletter frontend migration, Languages facade elimination, bug fix newsletter_unsubscribe

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-16 15:11:38 +01:00
parent 59b36f48b1
commit 3b32ea0b9b
54 changed files with 579 additions and 294 deletions

View File

@@ -0,0 +1,12 @@
<?php
namespace front\Views;
class Languages
{
public static function render( $languages )
{
$tpl = new \Tpl;
$tpl -> languages = $languages;
return $tpl -> render( 'site/languages' );
}
}