|
69 | 69 |
|
70 | 70 | 'color_scheme' => 'auto', |
71 | 71 |
|
| 72 | + /* |
| 73 | + * Apply color theme when idle time or active. |
| 74 | + * |
| 75 | + * If your browser theme following any specific condition (os, time etc.) helps to auto theme switch. |
| 76 | + * |
| 77 | + * 1000 ms = 1 seconds |
| 78 | + * |
| 79 | + * This option depends to "color_scheme" and works only with "auto" |
| 80 | + * |
| 81 | + * By default, 1000 and accepts only integer values. |
| 82 | + */ |
| 83 | + |
| 84 | + 'color_scheme_idle_time' => 1000, |
| 85 | + |
| 86 | + /* |
| 87 | + * Auto reload table contents when return back. |
| 88 | + * |
| 89 | + * 1000 ms = 1 seconds |
| 90 | + * |
| 91 | + * 0 = disabled |
| 92 | + * |
| 93 | + * By default, 10000 and accepts only integer values. |
| 94 | + */ |
| 95 | + |
| 96 | + 'table_reload_idle_time' => 10000, |
| 97 | + |
72 | 98 | /* |
73 | 99 | * If routes are not separated by a domain, this column is hidden from display by default. |
74 | 100 | * |
|
88 | 114 | */ |
89 | 115 |
|
90 | 116 | 'locale_force' => false, |
| 117 | + |
| 118 | + /* |
| 119 | + * Enable open link in new tab. |
| 120 | + * |
| 121 | + * Useful for manual testing or visual checks. |
| 122 | + * |
| 123 | + * This option related with "dummy_variable_prefix" |
| 124 | + */ |
| 125 | + |
| 126 | + 'show_path_link' => true, |
| 127 | + |
| 128 | + /* |
| 129 | + * Laravel stores variable names with curly bracktes, this option replaces "prefix" and "variable name". |
| 130 | + * So we can prevent url encode when browsing and we can get readable urls |
| 131 | + * |
| 132 | + * For example |
| 133 | + * before admin/line/lines/{line_id} => admin/line/lines/%7Bline_id%7D |
| 134 | + * after: admin/line/lines/{line_id} => admin/line/lines/param_line_id |
| 135 | + * |
| 136 | + * This option depends to "show_path_link" |
| 137 | + */ |
| 138 | + |
| 139 | + 'dummy_variable_prefix' => 'param_', |
| 140 | + |
| 141 | + /* |
| 142 | + * Click and copy to clipboard "path" and "name" text. |
| 143 | + */ |
| 144 | + |
| 145 | + 'click_and_copy' => true, |
| 146 | + |
| 147 | + /* |
| 148 | + * Double click and copy to clipboard "path" and "name" text. |
| 149 | + * |
| 150 | + * This option overwrites "click_and_copy" option. |
| 151 | + */ |
| 152 | + |
| 153 | + 'double_click_and_copy' => true, |
91 | 154 | ]; |
0 commit comments