SproutCMS

This is the code documentation for the SproutCMS project

source of /sprout/views/admin/categories_multi_delete.php

  1. <?php
  2. /*
  3.  * kate: tab-width 4; indent-width 4; space-indent on; word-wrap off; word-wrap-column 120;
  4.  * :tabSize=4:indentSize=4:noTabs=true:wrap=false:maxLineLen=120:mode=php:
  5.  *
  6.  * Copyright (C) 2015 Karmabunny Pty Ltd.
  7.  *
  8.  * This file is a part of SproutCMS.
  9.  *
  10.  * SproutCMS is free software: you can redistribute it and/or modify it under the terms
  11.  * of the GNU General Public License as published by the Free Software Foundation, either
  12.  * version 3 of the License, or (at your option) any later version.
  13.  *
  14.  * For more information, visit <http://getsproutcms.com>.
  15.  */
  16. use Sprout\Helpers\Csrf;
  17. ?>
  18.  
  19. <form action="SITE/admin/call/<?php echo $controller_name; ?>/postMultiDelete" method="post" id="main-form">
  20. <?= Csrf::token(); ?>
  21.  
  22. <?php foreach ($ids as $id): ?>
  23. <input type="hidden" name="ids[]" value="<?php echo (int)$id; ?>">
  24. <?php endforeach; ?>
  25.  
  26. <div class="message-bar-warning">
  27. <p>Are you sure you want to delete these records?</p>
  28. <p>This is an irreversible action</p>
  29. </div>
  30.  
  31. <h3><?php echo count($ids); ?> record<?php
  32. if(count($ids) > 1) {
  33. echo 's are';
  34. } else {
  35. echo ' is';
  36. }
  37. ?>
  38. selected for deletion</h3>
  39.  
  40. <button type="submit" class="button button-red button-large icon-after icon-delete">Delete records</button>
  41. </form>
  42.  
  43.  
  44.