Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove obsolete ACL resources from DB #2706

Merged
merged 2 commits into from
Nov 15, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/code/core/Mage/Admin/etc/config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<config>
<modules>
<Mage_Admin>
<version>1.6.1.3</version>
<version>1.6.1.4</version>
</Mage_Admin>
</modules>
<global>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
<?php
/**
* OpenMage
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* https://opensource.org/licenses/osl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to [email protected] so we can send you a copy immediately.
*
* @category Mage
* @package Mage_Admin
* @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com)
* @copyright Copyright (c) 2022 The OpenMage Contributors (https://www.openmage.org)
* @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/

/** @var Mage_Core_Model_Resource_Setup $installer */
$installer = $this;
$installer->startSetup();

$obsoleteAcl = [
'admin/page_cache',
'admin/system/config/moneybookers',
'admin/system/extensions',
'admin/system/extensions/local',
'admin/system/extensions/custom',
'admin/system/tools/backup',
'admin/system/tools/backup/rollback',
'admin/system/tools/compiler',
'admin/xmlconnect',
'admin/xmlconnect/mobile',
'admin/xmlconnect/admin_connect',
'admin/xmlconnect/queue',
'admin/xmlconnect/history',
'admin/xmlconnect/templates'
];


$installer->getConnection()->delete(
$installer->getTable('admin/rule'),
['resource_id IN (?)' => $obsoleteAcl]
);

$installer->endSetup();