Option to disable external dependencies. Closes #1929

This commit is contained in:
James Brooks
2016-07-11 10:11:44 +01:00
parent 5c54830b0f
commit b6c22c1029
8 changed files with 41 additions and 13 deletions
+2 -1
View File
@@ -42,8 +42,9 @@ class AppComposer
$view->withAppHeader(Config::get('setting.header'));
$view->withAppFooter(Config::get('setting.footer'));
$view->withAppName(Config::get('setting.app_name'));
$view->withShowSupport($support = Config::get('setting.show_support'));
$view->withShowSupport(Config::get('setting.show_support'));
$view->withAutomaticLocalization(Config::get('setting.automatic_localization'));
$view->withEnableExternalDependencies(Config::get('setting.enable_external_dependencies'));
$view->withSiteTitle(Config::get('setting.app_name'));
$view->withFontSubset(Config::get('langs.'.Config::get('app.locale').'.subset', 'latin'));
}