Advertisement
Guest User

Untitled

a guest
May 27th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.58 KB | None | 0 0
  1. <div class="row">
  2. <aside class="col s3 white hide_on_med_and_down ph0" id="table_list">
  3. <h5 class="mv10 teal-text darken-1 ph5"><?=ucfirst($controller_name)?></h5>
  4. <div>
  5. <label class="ph5">Filter:</label>
  6. <input class="js-filter pph1" data-to=".list li" type="text" />
  7. </div>
  8. <ul class="end list striped">
  9. <?php foreach($modules as $module) : ?>
  10. <li class="pv5 valign-wrapper">
  11. <form action class="col s12 ml5" method="post">
  12. <input name="module" value="<?=str_replace(array('installed.', '.zip'), '', basename($module) )?>" type="hidden" />
  13. <button class="btn-link" name="action" type="submit" value="<?php echo stristr($module, 'installed.') ? 'uninstall' : 'install'; ?>"><?=basename($module)?></button>
  14. </form>
  15. </li>
  16. <?php endforeach; ?>
  17. </ul>
  18. <form action class="row mt10 ml5" enctype="multipart/form-data" method="post">
  19. <div class="col s10 file-field input-field">
  20. <input id="module" name="module" type="file">
  21. <div class="file-path-wrapper">
  22. <input class="file-path validate" placeholder="¿Upload module.zip?" type="text">
  23. </div>
  24. </div>
  25. <div class="col s2">
  26. <button class="btn btn-leaf darken-1 green right waves-effect waves-light" name="action" type="submit" value="upload"><i class="material-icons">add</i></button>
  27. </div>
  28. </form>
  29. </aside>
  30. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement