Удаление модуля очистки кэша

This commit is contained in:
Konstantin
2026-05-30 13:47:55 +03:00
parent f6197986f2
commit 0e8a0f3b0c
4 changed files with 0 additions and 707 deletions
@@ -1,63 +0,0 @@
{{ header }}{{ column_left }}
<div id="content">
<div class="page-header">
<div class="container-fluid">
<div class="pull-right">
<button type="submit" form="form" data-toggle="tooltip" title="{{ button_save }}" class="btn btn-primary"><i class="fa fa-save"></i></button>
<a href="{{ cancel }}" data-toggle="tooltip" title="{{ button_cancel }}" class="btn btn-default"><i class="fa fa-reply"></i></a>
</div>
<h1>{{ heading_title }}</h1>
<ul class="breadcrumb">
{% for breadcrumb in breadcrumbs %}
<li><a href="{{ breadcrumb.href }}">{{ breadcrumb.text }}</a></li>
{% endfor %}
</ul>
</div>
</div>
<div class="container-fluid">
{% if error_warning %}
<div class="alert alert-danger"><i class="fa fa-exclamation-circle"></i> {{ error_warning }}
<button type="button" class="close" data-dismiss="alert">&times;</button>
</div>
{% endif %}
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title"><i class="fa fa-pencil"></i> {{ text_edit }}</h3>
</div>
<div class="panel-body">
<form action="{{ action }}" method="post" enctype="multipart/form-data" id="form" class="form-horizontal">
<div class="form-group">
<label class="col-sm-2 control-label" for="input-oc3x_storage_cleaner_status">{{ entry_status }}</label>
<div class="col-sm-10">
<div class="btn-group" data-toggle="buttons">
{% if oc3x_storage_cleaner_status %}
<label class="btn btn-warning"><input type="radio" name="oc3x_storage_cleaner_status" value="0" autocomplete="off">{{ text_disabled }}</label>
<label class="btn btn-warning active"><input type="radio" name="oc3x_storage_cleaner_status" value="1" autocomplete="off" checked="checked">{{ text_enabled }}</label>
{% else %}
<label class="btn btn-warning active"><input type="radio" name="oc3x_storage_cleaner_status" value="0" autocomplete="off" checked="checked">{{ text_disabled }}</label>
<label class="btn btn-warning"><input type="radio" name="oc3x_storage_cleaner_status" value="1" autocomplete="off">{{ text_enabled }}</label>
{% endif %}
</div>
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label" for="input-oc3x_storage_cleaner_size">{{ entry_size }}</label>
<div class="col-sm-10">
<div class="btn-group" data-toggle="buttons">
{% if oc3x_storage_cleaner_size %}
<label class="btn btn-warning"><input type="radio" name="oc3x_storage_cleaner_size" value="0" autocomplete="off">{{ text_disabled }}</label>
<label class="btn btn-warning active"><input type="radio" name="oc3x_storage_cleaner_size" value="1" autocomplete="off" checked="checked">{{ text_enabled }}</label>
{% else %}
<label class="btn btn-warning active"><input type="radio" name="oc3x_storage_cleaner_size" value="0" autocomplete="off" checked="checked">{{ text_disabled }}</label>
<label class="btn btn-warning"><input type="radio" name="oc3x_storage_cleaner_size" value="1" autocomplete="off">{{ text_enabled }}</label>
{% endif %}
</div>
</div>
</div>
</form>
</div>
<div style="background:#aaccdf;padding:15px;text-align:center;"><strong style="color:#233746;font-size:15px;">Другие модули для Opencart 3.x на нашем сайте <a href="https://opencart3x.ru" target="_blank">opencart3x.ru</a></strong></div>
</div>
</div>
</div>
{{ footer }}