ChatNet features a WordPress-like plugin architecture that allows you to extend functionality without modifying core code. This section explains how to verify your license for marketplace access, install and manage plugins, and provides an overview of available official plugins. Developers will also find information about the plugin API for creating custom extensions using hooks, filters, and options.
Before accessing the plugin marketplace:
Browse and install plugins directly from the ChatNet marketplace with your verified license.
Navigate to Plugins > Installed Plugins
| Action | Description |
|---|---|
| Activate | Enable the plugin |
| Deactivate | Disable without removing |
| Delete | Remove completely |
| Settings | Configure plugin options |
| Update | Install latest version |
Official plugins that extend ChatNet with premium features.
| Plugin | Description |
|---|---|
| Membership Plans | Tiered subscription system |
| Wallet | Virtual currency and payments |
| Voice Channels | Voice chat rooms |
| Additional Sticker Packs | Extra sticker collections |
Plugins follow a WordPress-like architecture:
// plugins/my_plugin/plugin.php register_plugin('my_plugin', [ 'name' => 'My Plugin', 'description' => 'Plugin description', 'version' => '1.0.0', 'author' => 'Your Name' ]); // Hooks add_action('init', 'my_init_function'); add_filter('message_content', 'my_filter_function'); // Options update_option('my_setting', 'value'); $value = get_option('my_setting', 'default');