2018-07-13 18:39:55 +02:00
|
|
|
<?php
|
|
|
|
require_once('../../common.php');
|
|
|
|
?>
|
|
|
|
<label><span class="icon-doc-text big-icon"></span><?php i18n("System Settings"); ?></label>
|
|
|
|
<hr>
|
|
|
|
<label></label>
|
|
|
|
<table class="settings">
|
2018-07-26 21:39:40 +02:00
|
|
|
<tr>
|
|
|
|
<td><?php i18n("Auto Save"); ?></td>
|
|
|
|
<td>
|
|
|
|
<select class="setting" data-setting="codiad.settings.autosave">
|
|
|
|
<option value="true"><?php i18n("True") ?></option>
|
|
|
|
<option value="false" default><?php i18n("False") ?></option>
|
|
|
|
</select>
|
|
|
|
</td>
|
|
|
|
</tr>
|
2019-02-07 19:55:17 +01:00
|
|
|
<tr>
|
|
|
|
<td><?php i18n("Auto Reload Preview"); ?></td>
|
|
|
|
<td>
|
Changed $path to __DIR__ for config location, Updated auto reload variables, Removed unload listener for auto reload, Changed project default to array so that if no projects exist the program does not crash, Updated autosave to use let instead of vars, Fixed capitalization for sideExpanded variable, Added try catch to pdo initialization on install, Added more error checks on install, Removed password function on install query, Changed default settings array, Added loading div to user delete, Updated queries that threw errors when a default value was zero, Added blank username and password check,
2019-02-09 22:14:27 +01:00
|
|
|
<select class="setting" data-setting="codiad.filemanager.autoReloadPreview">
|
2019-02-07 19:55:17 +01:00
|
|
|
<option value="false" default><?php i18n("False") ?></option>
|
|
|
|
<option value="true"><?php i18n("True") ?></option>
|
|
|
|
</select>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td><?php i18n("Right Sidebar Trigger"); ?></td>
|
|
|
|
<td>
|
|
|
|
<select class="setting" data-setting="codiad.editor.rightSidebarTrigger">
|
|
|
|
<option value="false" default><?php i18n("Hover") ?></option>
|
|
|
|
<option value="true"><?php i18n("Click") ?></option>
|
|
|
|
</select>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td><?php i18n("Filemanager Trigger"); ?></td>
|
|
|
|
<td>
|
|
|
|
<select class="setting" data-setting="codiad.editor.fileManagerTrigger">
|
|
|
|
<option value="false" default><?php i18n("Double Click") ?></option>
|
|
|
|
<option value="true"><?php i18n("Single Click") ?></option>
|
|
|
|
</select>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td><?php i18n("Persistent Modal"); ?></td>
|
|
|
|
<td>
|
|
|
|
<select class="setting" data-setting="codiad.editor.persistentModal">
|
|
|
|
<option value="true" default><?php i18n("Yes") ?></option>
|
|
|
|
<option value="false"><?php i18n("No") ?></option>
|
|
|
|
</select>
|
|
|
|
</td>
|
|
|
|
</tr>
|
2018-07-13 18:39:55 +02:00
|
|
|
</table>
|