# Phase 8.0 - ERP module blocked (Option C: retained but explicitly blocked)
#
# inventory_setup.php configures warehouses and units of measure. Both
# tables are unused: warehouse_info has ZERO rows, and unit holds 6 rows of
# seed data that shipped with the product this panel was forked from.
#
# company_setup.php is NOT blocked. It edits company_info - the company
# details rendered on the live website - which is CMS content in active
# use. It was checked individually rather than blocked by association with
# its directory.
#
# TO REVERSE
#
#   delete this file
#
# See docs/ERP-USAGE-DECISION.md.

<Files "inventory_setup.php">
    <IfModule mod_authz_core.c>
        Require all denied
    </IfModule>

    <IfModule !mod_authz_core.c>
        Order allow,deny
        Deny from all
    </IfModule>
</Files>
