mirror of
https://github.com/xevidos/codiad.git
synced 2024-11-13 07:11:14 +01:00
Added to todo list, Reformatted filemanager dialog
This commit is contained in:
parent
647509e201
commit
400618c0bb
2 changed files with 151 additions and 133 deletions
|
@ -38,6 +38,8 @@ Current Tasks:
|
|||
Task List:
|
||||
|
||||
* Add ability to login with LDAP
|
||||
* Add archive management
|
||||
* Add bookmark files
|
||||
* Add custom market
|
||||
* \- Add in new admin interface ( Check admin-portal branch for progress )
|
||||
- Group Management
|
||||
|
@ -46,13 +48,17 @@ Task List:
|
|||
- Project Management
|
||||
- System Settings
|
||||
- User Management
|
||||
* Add different code linters
|
||||
* Add Drag and Drop natively to filemanager
|
||||
* Add folder / filestructure upload ability
|
||||
* Add if file could not be saved 5 times close the open file
|
||||
* Add multi level users. ( Projects for only certain groups, Permission levels )
|
||||
* Add mobile compatibility
|
||||
* Add move files
|
||||
* Add permissions module ( more in depth permissions such as read/write, delete, etc )
|
||||
* Add print code
|
||||
* Add support for more database systems ( MSSQL, Oracle, SQLite, Filesystem storage, etc )
|
||||
* Add terminal support ( optional per permission level )
|
||||
* Add in auto save timer that saves after the user stops typing instead of after every change
|
||||
* Clean up update script
|
||||
* Fix broken themes
|
||||
|
|
|
@ -106,8 +106,17 @@ switch($_GET['action']){
|
|||
case 'overwrite':
|
||||
?>
|
||||
<input type="hidden" name="path" value="<?php echo($_GET['path']); ?>">
|
||||
|
||||
<label><?php i18n("Would you like to overwrite or duplicate the following:"); ?></label>
|
||||
<pre><?php if(!FileManager::isAbsPath($_GET['path'])) { echo '/'; }; echo($_GET['path']); ?></pre>
|
||||
<pre>
|
||||
<?php
|
||||
if( ! FileManager::isAbsPath( $_GET['path'] ) ) {
|
||||
|
||||
echo '/';
|
||||
};
|
||||
echo( $_GET['path'] );
|
||||
?>
|
||||
</pre>
|
||||
<select name="or_action">
|
||||
<option value="0"><?php i18n("Overwrite Original"); ?></option>
|
||||
<option value="1"><?php i18n("Create Duplicate"); ?></option>
|
||||
|
@ -134,9 +143,12 @@ switch($_GET['action']){
|
|||
<label><?php i18n("In:"); ?></label>
|
||||
<select name="search_type">
|
||||
<option value="0"><?php i18n("Current Project"); ?></option>
|
||||
<?php if(checkAccess()) { ?>
|
||||
<option value="1"><?php i18n("Workspace Projects"); ?></option>
|
||||
<?php } ?>
|
||||
<?php
|
||||
if( checkAccess() ) {
|
||||
|
||||
?><option value="1"><?php i18n("Workspace Projects"); ?></option><?php
|
||||
}
|
||||
?>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
|
|
Loading…
Reference in a new issue