Add config() Go to Definition support to VS Code extension

Always include params in window.rsxapp to reduce state variations
Add request params to window.rsxapp global
Enhance module creation commands with clear nomenclature guidance
Add module/submodule/feature nomenclature clarification to docs

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
root
2025-10-30 19:13:57 +00:00
parent 8c8fb8e902
commit ac082bce2a
15 changed files with 546 additions and 16 deletions

View File

@@ -246,7 +246,7 @@ class Dispatcher
Debugger::console_debug('DISPATCH', 'Matched route to ' . $handler_class . '::' . $handler_method . ' params: ' . json_encode($params));
// Set current controller and action in Rsx for tracking
\App\RSpade\Core\Rsx::_set_current_controller_action($handler_class, $handler_method);
\App\RSpade\Core\Rsx::_set_current_controller_action($handler_class, $handler_method, $params);
// Load and validate handler class
static::__load_handler_class($handler_class);
@@ -574,7 +574,7 @@ class Dispatcher
}
// Set current controller and action for tracking
Rsx::_set_current_controller_action($class_name, $method_name);
Rsx::_set_current_controller_action($class_name, $method_name, $params);
// Check if this is a controller (all methods are static)
if (static::__is_controller($class_name)) {