Add support for config hashes in the admin settings page.

This commit is contained in:
2011-09-24 16:14:10 +01:00
parent 1737106618
commit 553c256574
5 changed files with 64 additions and 4 deletions

View File

@@ -30,6 +30,10 @@ try {
$type = Sihnon_Config::TYPE_STRING_LIST;
$value = array();
} break;
case 'hash': {
$type = Sihnon_Config::TYPE_HASH;
$value = array();
} break;
}
// Add the new (empty) value. This is because no suitable UI has been presented yet.