Changeset 894 for trunk/Application/View.php
- Timestamp:
- Mar 6, 2023, 12:16:38 PM (21 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Application/View.php
r893 r894 3 3 class BaseView extends View 4 4 { 5 public string $Title ;5 public string $Title = ''; 6 6 7 7 function ShowLocaleSelector() 8 8 { 9 //$Output .= ' <form action="?setlocale" method="get">';10 9 $Output = ' <select onchange="window.location=this.value">'; 11 10 foreach (Core::Cast($this->System)->LocaleManager->Available as $Locale) … … 45 44 46 45 $Output .= $this->ShowLocaleSelector(); 47 //$Output .= '</form>';48 46 $Output .= '</span></div>'; 49 47 return $Output;
Note:
See TracChangeset
for help on using the changeset viewer.