{
    "title": "Theme/Plugin Editor",
    "messages": {
        "success": {
            "title": "File Editor Disabled",
            "details": "The WordPress theme and plugin file editor is disabled, improving security.",
            "steps": [
                "Keep DISALLOW_FILE_EDIT set to true",
                "Use FTP or file manager for file edits",
                "Maintain regular file backups"
            ]
        },
        "error": {
            "title": "File Editor Enabled",
            "details": "The WordPress theme and plugin file editor is enabled, which poses a security risk.",
            "steps": [
                "Add DISALLOW_FILE_EDIT to wp-config.php",
                "Set DISALLOW_FILE_EDIT to true",
                "Use FTP or SFTP for file editing",
                "Implement file change monitoring"
            ]
        }
    },
    "learn_more": {
        "description": "The WordPress file editor allows direct editing of theme and plugin files from the admin dashboard. While convenient, it can be exploited by attackers to modify your site's code if they gain admin access.",
        "benefits": [
            "Prevents unauthorized code modifications",
            "Reduces attack surface",
            "Forces secure file editing methods",
            "Better code change tracking"
        ],
        "recommended_tools": [
            {
                "name": "FileZilla",
                "type": "FTP Client"
            },
            {
                "name": "WinSCP",
                "type": "SFTP Client"
            }
        ]
    }
}