Getting started on settings retrieval

This commit is contained in:
Mike Koch 2017-04-28 13:08:25 -04:00
parent fd41a589fe
commit 7494efb8ca

View File

@ -0,0 +1,22 @@
<?php
namespace BusinessLogic\Settings;
// TODO Test!
class SettingsRetriever {
private static $settingsToNotReturn = array(
'webmaster_email',
'noreply_email',
'noreply_name',
'db_.*',
);
/**
* @param $heskSettings array
* @param $modsForHeskSettings array
*/
function getAllSettings($heskSettings, $modsForHeskSettings) {
}
}