mirror of
https://github.com/saintly2k/FoOlSlideX.git
synced 2025-02-20 11:13:13 +08:00
51 lines
1.2 KiB
PHP
51 lines
1.2 KiB
PHP
<?php
|
|
|
|
$theme = [
|
|
"plugins" => [
|
|
"SleekDB",
|
|
"dbLists",
|
|
"menu",
|
|
"session",
|
|
"customTags",
|
|
"readChapters",
|
|
"readingMode",
|
|
],
|
|
"lists" => [
|
|
"dbLists" => [
|
|
"dbl_default",
|
|
"dbl_FoOlSlideX",
|
|
"dbl_session",
|
|
],
|
|
"customTags" => [
|
|
"ct_default",
|
|
"ct_FoOlSlideX",
|
|
],
|
|
],
|
|
"config" => [
|
|
"theme" => "fsx",
|
|
"last" => [
|
|
"title" => 5,
|
|
"chapter" => 20,
|
|
],
|
|
"perpage" => [
|
|
"title" => 15,
|
|
"chapter" => 50,
|
|
],
|
|
"sleek" => [
|
|
"dir" => "/database/FoOlSlideX", // From the root-dir
|
|
"config" => [
|
|
"auto_cache" => true,
|
|
"cache_lifetime" => null,
|
|
"timeout" => false, // deprecated! Set it to false!
|
|
"primary_key" => "id",
|
|
"search" => array(
|
|
"min_length" => 2,
|
|
"mode" => "or",
|
|
"score_key" => "scoreKey",
|
|
),
|
|
"folder_permissions" => 0777,
|
|
],
|
|
],
|
|
],
|
|
];
|