Compare commits
2 Commits
98efb779b1
...
464f229a16
Author | SHA1 | Date | |
---|---|---|---|
|
464f229a16 | ||
|
fe72097d75 |
@ -33,4 +33,8 @@ class OpenWeatherMap extends VirtualDeviceManager
|
||||
return 'exception: ' . $e->getMessage();
|
||||
}
|
||||
}
|
||||
|
||||
function enable(){
|
||||
(new SettingsManager)->create('open_weather_api_token', '', 'open_weather');
|
||||
}
|
||||
}
|
||||
|
@ -70,6 +70,8 @@ class Setting extends Template
|
||||
$result = $settingsManager->getSettingGroup($plugins[$key]['slug']);
|
||||
if (count ($result) > 0) {
|
||||
$plugins[$key]['settings'] = $result;
|
||||
} else {
|
||||
unset($plugins[$key]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -203,7 +203,22 @@ $partial = new Partial('head');
|
||||
</div>
|
||||
|
||||
<!--Plugins Settings-->
|
||||
|
||||
<?php foreach ($PLUGINSSETTINGS as $key => $pluginSeting) { ?>
|
||||
<div class="col-12 col-sm-9 mx-auto mt-4">
|
||||
<h4 class="mb-4"><?php echo $pluginSeting['name'] ?></h4>
|
||||
<form method="post">
|
||||
<?php foreach ($pluginSeting['settings'] as $key => $pluginSetingField) { ?>
|
||||
<div class="field">
|
||||
<div class="label"><?php echo $pluginSetingField['name'] ?>:</div>
|
||||
<input type="text" class="input" name="roomName" value="<?php echo $pluginSetingField['value'] ?>">
|
||||
</div>
|
||||
<?php } ?>
|
||||
<div class="field">
|
||||
<input type="submit" name="submitPlugins<?php echo $pluginSeting['name'] ?>Settings" class="button" value="<?php $LANGMNG->echo('b_save') ?>">
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
<?php } ?>
|
||||
</div>
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user