mirror of
https://github.com/wintercms/winter.git
synced 2024-06-28 05:33:29 +02:00
10 lines
571 B
HTML
10 lines
571 B
HTML
<?php
|
|
$systemItems = System\Classes\SettingsManager::instance()->listItems('system');
|
|
|
|
// @todo Trialing the removal of this due to the new account menu
|
|
// @deprecated Remove if year >= 2016
|
|
$mySettingItems = []; //System\Classes\SettingsManager::instance()->listItems('mysettings');
|
|
?>
|
|
<?php /* @deprecated Remove if year >= 2016 */ ?>
|
|
<?= $this->makePartial('~/modules/system/partials/_settings_menu_items.htm', ['items' => $mySettingItems]); ?>
|
|
<?= $this->makePartial('~/modules/system/partials/_settings_menu_items.htm', ['items' => $systemItems]); ?> |