mirror of
https://github.com/KevinMidboe/rohnenedre.git
synced 2025-10-29 17:50:37 +00:00
16 lines
552 B
PHP
16 lines
552 B
PHP
<?php
|
|
if ($options['isNetworkSettings']) {
|
|
if ($options['isNetworkSettingsEnabled']) {
|
|
include CLEF_TEMPLATE_PATH . 'admin/multisite/network-enabled.tpl.php';
|
|
} else {
|
|
include CLEF_TEMPLATE_PATH . 'admin/multisite/network-disabled.tpl.php';
|
|
}
|
|
}
|
|
else if ($options['isNetworkSettingsEnabled']) {
|
|
if ($options['isUsingIndividualSettings']) {
|
|
include CLEF_TEMPLATE_PATH . 'admin/multisite/single-disabled.tpl.php';
|
|
} else {
|
|
include CLEF_TEMPLATE_PATH . 'admin/multisite/single-enabled.tpl.php';
|
|
}
|
|
}
|