PHP Classes

File: SmallServerAdmin/files/dialogs/confirmToDeleteItems.php

Recommend this page to a friend!
  Classes of Aleksey Nemiro   PHP Small Server Administrator   SmallServerAdmin/files/dialogs/confirmToDeleteItems.php   Download  
File: SmallServerAdmin/files/dialogs/confirmToDeleteItems.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,305 bytes
 

Contents

Class file image Download
<div id="confirmToDeleteItems" 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>${Delete}</h3>
      </div>
      <div class="modal-body">
        ${Are you sure you want to delete} <strong>{{SelectedItems.length}}</strong>
        {{SelectedItems.length | CountAsString : { word1: "${items1}", word234: "${items234}", wordmore: "${items10}" } }}?
        <br /><br />
        <span style="color:red">${Recover data after deletion will not be possible.}</span>
        <br /><br />
        ${FILES_CONFIRM_ITEMS_DELETETION}<br />
        <div class="form-group">
          <input type="text" class="form-control" ng-model="ConfirmItemsToRemove" placeholder="${Enter}: {{SelectedItems.length}}" />
        </div>
      </div>
      <div class="modal-footer">
        <button class="btn btn-danger" ng-click="DeleteItems()" ng-disabled="ConfirmItemsToRemove == '' || ConfirmItemsToRemove != SelectedItems.length">${Delete}</button>
        <button class="btn btn-default" data-dismiss="modal" aria-hidden="true" ng-click="CloseConfirmItems()">${Cancel}</button>
      </div>
    </div>
  </div>
</div>