Signed-off-by: Johannes Löthberg <[email protected]>
---
 web/lib/confparser.inc.php | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/web/lib/confparser.inc.php b/web/lib/confparser.inc.php
index 09fee5a..2c49413 100644
--- a/web/lib/confparser.inc.php
+++ b/web/lib/confparser.inc.php
@@ -24,6 +24,13 @@ function config_get_bool($section, $key) {
        return ($val == 'yes' || $val == 'true' || $val == '1');
 }
 
+function config_items($section) {
+       global $AUR_CONFIG;
+       config_load();
+
+       return $AUR_CONFIG[$section];
+}
+
 function config_exists($key) {
        global $AUR_CONFIG;
        config_load();
-- 
2.4.2

Reply via email to