PHP Classes

File: SmallServerAdmin/files/dialogs/confirmToMoveItems.php

Recommend this page to a friend!
  Classes of Aleksey Nemiro   PHP Small Server Administrator   SmallServerAdmin/files/dialogs/confirmToMoveItems.php   Download  
File: SmallServerAdmin/files/dialogs/confirmToMoveItems.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: PHP Small Server Administrator
Web panel for small Debian and Ubuntu servers
Author: By
Last change:
Date: 7 years ago
Size: 1,337 bytes
 

Contents

Class file image Download
<div id="confirmToMoveItems" class="modal" role="dialog" data-not-restore="true">
  <div class="modal-dialog">
    <div class="modal-content">
      <div class="modal-header">
        <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
        <h3>${Move}</h3>
      </div>
      <div class="modal-body">
        <div class="form-group">
          <label>${Target path}:</label>
          <input type="text" ng-model="MoveTargetPath" class="form-control" />
        </div>
        <div class="form-group">
          <div class="btn-group">
            <label class="btn btn-default" ng-model="MoveItemsMode" uib-btn-radio="'Force'">${overwrite existing}</label>
            <label class="btn btn-default" ng-model="MoveItemsMode" uib-btn-radio="'NoClobber'">${skip existing}</label>
          </div>
        </div>
        <div class="checkbox">
          <label>
            <input type="checkbox" ng-model="MoveItemsBackup"> ${make a backup copy of the target files}
          </label>
        </div>
      </div>
      <div class="modal-footer">
        <button class="btn btn-primary" ng-click="MoveItems()">${Execute}</button>
        <button class="btn btn-default" data-dismiss="modal" aria-hidden="true" ng-click="CloseConfirmItems()">${Cancel}</button>
      </div>
    </div>
  </div>
</div>