index.php 564 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * @var \App\View\AppView $this
  4. */
  5. ?>
  6. <div class="row">
  7. <div class="col-12">
  8. <h1>Tools plugin</h1>
  9. <h2>Useful quick-tools</h2>
  10. <ul>
  11. <li><?php echo $this->Html->link('Available "pages"', ['controller' => 'Pages', 'action' => 'index']); ?></li>
  12. <li><?php echo $this->Html->link('Bitmasks', ['controller' => 'Helper', 'action' => 'bitmasks']);?></li>
  13. </ul>
  14. <h2>Helper debugging</h2>
  15. <ul>
  16. <li><?php echo $this->Html->link('Icon helper and font icons', ['controller' => 'Icons', 'action' => 'index']); ?></li>
  17. </ul>
  18. </div>
  19. </div>