{% include 'admin/partials/header.html' %} {% include 'admin/partials/sidebar.html' %}
RECOVERY & RETENTION

Trash

Restore recently deleted content or permanently purge it after creating an optional restore point.

Active trash{{ count($items) }}
Restore points{{ count($restorePoints) }}
Topics{{ $counts['topic'] ?? 0 }}
Posts{{ $counts['post'] ?? 0 }}

Deleted content

Purging removes the database records permanently.

{% if count($items) === 0 %}
Trash is empty

Deleted topics, replies, events, and supported social content will appear here.

{% else %}
{% foreach $items as $item %}{% endforeach %}
ItemTypeDeleted byDeletedActions
{{ $item['title'] }}#{{ $item['item_id'] }}{{ strtoupper($item['item_type']) }}{{ $item['deleted_by_name'] ?? 'System' }}{{ $item['deleted_at'] }}
{% endif %}

Restore points

Snapshots created before permanent purges.

{% if count($restorePoints) === 0 %}

No restore points have been created.

{% else %}
{% foreach $restorePoints as $point %}
{{ $point['name'] }}

{{ $point['description'] }}

{{ $point['created_at'] }} ยท {{ $point['created_by_name'] ?? 'Administrator' }}
{% endforeach %}
{% endif %}
{% include 'admin/partials/footer.html' %}