Skip to content

Commit

Permalink
FIX: Variables
Browse files Browse the repository at this point in the history
- #12
  • Loading branch information
aljawaid committed May 11, 2023
1 parent 8041c59 commit ea9d7e2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Template/config/modals/plugin_deep_clean.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,19 +65,19 @@
</span>
<!-- ContentCleaner: PLUGIN DEEP CLEAN PLUGIN TABLES -->
<?php if (($incomingController == 'PluginCleaningController') && ($outgoingAction == 'confirmDeletePluginTables')): ?>
<?= $this->modal->confirmButtons('PluginCleaningController', 'deletePluginTables', array('plugin_name' => $plugin_name, 'plugin' => 'ContentCleaner'), t('Deep Clean')) ?>
<?= $this->modal->confirmButtons('PluginCleaningController', 'deletePluginTables', array('plugin_job_name' => $plugin_job_name, 'plugin' => 'ContentCleaner'), t('Deep Clean')) ?>
<?php endif ?>
<!-- ContentCleaner: PLUGIN DEEP CLEAN CORE TABLE COLUMNS -->
<?php if (($incomingController == 'PluginCleaningController') && ($outgoingAction == 'confirmDeleteCoreTableColumns')): ?>
<?= $this->modal->confirmButtons('PluginCleaningController', 'deleteCoreTableColumns', array('plugin_name' => $plugin_name, 'plugin' => 'ContentCleaner'), t('Deep Clean')) ?>
<?= $this->modal->confirmButtons('PluginCleaningController', 'deleteCoreTableColumns', array('plugin_job_name' => $plugin_job_name, 'plugin' => 'ContentCleaner'), t('Deep Clean')) ?>
<?php endif ?>
<!-- ContentCleaner: PLUGIN DEEP CLEAN CORE TABLE ENTRIES -->
<?php if (($incomingController == 'PluginCleaningController') && ($outgoingAction == 'confirmDeleteCoreTableEntries')): ?>
<?= $this->modal->confirmButtons('PluginCleaningController', 'deleteCoreTableEntries', array('plugin_name' => $plugin_name, 'plugin' => 'ContentCleaner'), t('Deep Clean')) ?>
<?= $this->modal->confirmButtons('PluginCleaningController', 'deleteCoreTableEntries', array('plugin_job_name' => $plugin_job_name, 'plugin' => 'ContentCleaner'), t('Deep Clean')) ?>
<?php endif ?>
<!-- ContentCleaner: PLUGIN DEEP CLEAN PLUGIN SCHEMA ENTRY -->
<?php if (($incomingController == 'PluginCleaningController') && ($outgoingAction == 'confirmDeletePluginSchemaEntry')): ?>
<?= $this->modal->confirmButtons('PluginCleaningController', 'deletePluginSchemaEntry', array('plugin_name' => $plugin_name, 'plugin' => 'ContentCleaner'), t('Deep Clean')) ?>
<?= $this->modal->confirmButtons('PluginCleaningController', 'deletePluginSchemaEntry', array('plugin_job_name' => $plugin_job_name, 'plugin' => 'ContentCleaner'), t('Deep Clean')) ?>
<?php endif ?>
</div>
</div>

0 comments on commit ea9d7e2

Please sign in to comment.