mirror of
https://git.cant.at/Madeorsk/PollVerlaine
synced 2024-11-01 12:14:32 +01:00
Madeorsk
b7ece5cdad
+ Add a way to configure the db handler (default DB : BerkeleyDB 4); + Add a way to launch a database optimization on delete; * Designed Multiple votes checkbox; * Others minor improvements.
16 lines
363 B
PHP
16 lines
363 B
PHP
<?php
|
|
|
|
$VERLAINE = [
|
|
"app_url" => "",
|
|
"chart_colors" => [
|
|
"#FF4B44", // Red.
|
|
"#FFD149", // Yellow.
|
|
"#56B3FF", // Dark blue.
|
|
"#FF9535", // Orange.
|
|
"#7DFF59", // Green.
|
|
"#FFAFEC", // Pink.
|
|
"#82FFE8", // Light blue.
|
|
],
|
|
"optimize_on_delete" => false,
|
|
"db_handler" => "db4", // See available handlers by using `php -r "var_dump(dba_handlers());"`
|
|
]; |