### SSPanel UIM - Multi-Protocol Support Source: https://github.com/anankke/sspanel-uim/blob/master/README.md This snippet details the multi-protocol support of SSPanel UIM, including Shadowsocks 2022, V2Ray, Trojan, and TUIC. It also highlights the universal subscription interface for distributing subscriptions in json, clash, sip008, and sing-box formats. ```Markdown ### 多协议支持 | Multi-Protocol Support - 支持 Shadowsocks 2022、V2Ray、Trojan、TUIC 等主流协议 - Support for Shadowsocks 2022, V2Ray, Trojan, TUIC and other mainstream protocols - 通用订阅接口,一键分发 json/clash/sip008/sing-box 格式订阅 - Universal subscription interface, one-click json/clash/sip008/sing-box format subscription distribution ``` -------------------------------- ### PSR-7 Request Parameter Method Usage Source: https://github.com/anankke/sspanel-uim/blob/master/CONTRIBUTING.md When adding or modifying router callbacks, it's recommended to use PSR-7 methods for parameter retrieval. Avoid using `$request->getParam()` unless necessary, and prefer methods like `$request->getParsedBodyParam()`. ```PHP getParsedBodyParam('parameterName'); // Avoid if possible, prefer PSR-7 methods: // $value = $request->getParam('parameterName'); ?> ``` -------------------------------- ### Refactored Cron System Command Source: https://github.com/anankke/sspanel-uim/blob/master/README.md This snippet describes the refactored cron system which allows completing all scheduled tasks with a single command. It's a key feature for operations management. ```Shell one_command_to_rule_them_all --cron --all ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.