46 lines
2.9 KiB
PHP
Executable File
46 lines
2.9 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* @file manager.php
|
|
* @brief Содержит интерфейс для создания, удаления, копирования и редактирования файлов и папок
|
|
*/
|
|
?>
|
|
|
|
<?php /** @brief Основной контейнер менеджера */ $managerDiv; ?>
|
|
<div id="managerDiv" style="visibility: hidden; top: 20%; left: 50%; transform: translate(-50%, -20%);">
|
|
</div>
|
|
|
|
<?php /** @brief Контейнер настроек менеджера */ $managerSettings; ?>
|
|
<div id="managerSettings" style="visibility: hidden; top: 0px; left: 0px;">
|
|
<div id="managerSettingsDiv">
|
|
<span id="managerSettingsCopy" class="managerSettingsButtons" style="background-position: -890px -840px;">{{copy}}</span>
|
|
<span id="managerSettingsCut" class="managerSettingsButtons" style="background-position: -1372px -419px;">{{cut}}</span>
|
|
<span id="managerSettingsRename" class="managerSettingsButtons" style="background-position: -96px -359px;">{{rename}}</span>
|
|
<span id="managerSettingsDelete" class="managerSettingsButtons" style="background-position: -654px -1018px;">{{delete}}</span>
|
|
<span id="managerSettingsProperties" class="managerSettingsButtons" style="background-position: -1195px -1076px;">{{properties}}</span>
|
|
<span id="managerSettingsLoad" class="managerSettingsButtons" style="background-position: -1059px -2px;">{{upload_file}}</span>
|
|
<span id="managerSettingsInsert" class="managerSettingsButtons" style="background-position: -1435px -419px;">{{paste}}</span>
|
|
<span id="managerSettingsButtonCreateFile" class="managerSettingsButtons" style="background-position: -642px -839px;">{{create_file}}</span>
|
|
<span id="managerSettingsButtonCreateFolder" class="managerSettingsButtons" style="background-position: -1121px -840px;">{{create_folder}}</span>
|
|
</div>
|
|
</div>
|
|
|
|
<?php /** @brief Контейнер свойств выбранного элемента */ $managerProperties; ?>
|
|
<div id="managerProperties" style="visibility: hidden; top: 20%; left: 50%; transform: translate(-50%, -20%);">
|
|
<div id="managerPropertiesTop">
|
|
<span id="managerPropertiesTopName" class="managerPropertiesTop"></span>
|
|
<span id="managerPropertiesTopClose" class="editib"></span>
|
|
</div>
|
|
<div id="managerPropertiesMiddle">
|
|
<div id="managerPropertiesWindow">
|
|
<span id="managerPropertiesWindowProperties" class="managerPropertiesWindowDiv">{{properties}}</span>
|
|
<span id="managerPropertiesWindowRights" class="managerPropertiesWindowDiv">{{rights}}</span>
|
|
</div>
|
|
<div id="managerPropertiesDiv">
|
|
</div>
|
|
<div id="managerPropertiesDivButtons">
|
|
<div id="managerPropertiesDivButtonOk" class="managerPropertiesDivButton">{{ok}}</div>
|
|
<div id="managerPropertiesDivButtonCancel" class="managerPropertiesDivButton">{{cancel}}</div>
|
|
</div>
|
|
</div>
|
|
</div>
|