Revert "Don't show the link for resource removal if the resource is utilized for configuration"
This reverts commit 7331904851
.
This commit is contained in:
parent
7331904851
commit
252ce5d60d
|
@ -315,8 +315,6 @@ class ConfigController extends Controller
|
|||
{
|
||||
$this->assertPermission('config/application/resources');
|
||||
$this->view->resources = Config::app('resources', true);
|
||||
$configResource = Config::app()->get('global', 'config_resource');
|
||||
$this->view->unremovableResources = $configResource === null ? array() : array($configResource);
|
||||
$this->createApplicationTabs()->activate('resource');
|
||||
}
|
||||
|
||||
|
|
|
@ -58,20 +58,16 @@
|
|||
) ?>
|
||||
</td>
|
||||
<td class="icon-col text-right">
|
||||
<?php
|
||||
if (! in_array($name, $unremovableResources)) {
|
||||
echo $this->qlink(
|
||||
'',
|
||||
'config/removeresource',
|
||||
array('resource' => $name),
|
||||
array(
|
||||
'class' => 'action-link',
|
||||
'icon' => 'cancel',
|
||||
'title' => sprintf($this->translate('Remove resource %s'), $name)
|
||||
)
|
||||
);
|
||||
}
|
||||
?>
|
||||
<?= $this->qlink(
|
||||
'',
|
||||
'config/removeresource',
|
||||
array('resource' => $name),
|
||||
array(
|
||||
'class' => 'action-link',
|
||||
'icon' => 'cancel',
|
||||
'title' => sprintf($this->translate('Remove resource %s'), $name)
|
||||
)
|
||||
) ?>
|
||||
</td>
|
||||
</tr>
|
||||
<?php endforeach ?>
|
||||
|
|
Loading…
Reference in New Issue