clear-cache.php 828 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. use yii\widgets\ActiveForm;
  3. $this->title = '清理缓存';
  4. $this->params['breadcrumbs'][] = ['label' => $this->title];
  5. ?>
  6. <div class="row">
  7. <div class="col-lg-12">
  8. <div class="box">
  9. <div class="box-header with-border">
  10. <h3 class="box-title">缓存</h3>
  11. </div>
  12. <?php $form = ActiveForm::begin([]); ?>
  13. <div class="box-body text-center">
  14. <?= $form->field($model, 'cache')->checkbox() ?>
  15. </div>
  16. <!-- /.box-body -->
  17. <div class="box-footer">
  18. <div class="col-sm-12 text-center">
  19. <button class="btn btn-primary" type="submit">立即清理</button>
  20. </div>
  21. </div>
  22. <?php ActiveForm::end(); ?>
  23. </div>
  24. </div>
  25. </div>
粤ICP备19079148号