Standardize settings file naming and relocate documentation files Fix code quality violations from rsx:check Reorganize user_management directory into logical subdirectories Move Quill Bundle to core and align with Tom Select pattern Simplify Site Settings page to focus on core site information Complete Phase 5: Multi-tenant authentication with login flow and site selection Add route query parameter rule and synchronize filename validation logic Fix critical bug in UpdateNpmCommand causing missing JavaScript stubs Implement filename convention rule and resolve VS Code auto-rename conflict Implement js-sanitizer RPC server to eliminate 900+ Node.js process spawns Implement RPC server architecture for JavaScript parsing WIP: Add RPC server infrastructure for JS parsing (partial implementation) Update jqhtml terminology from destroy to stop, fix datagrid DOM preservation Add JQHTML-CLASS-01 rule and fix redundant class names Improve code quality rules and resolve violations Remove legacy fatal error format in favor of unified 'fatal' error type Filter internal keys from window.rsxapp output Update button styling and comprehensive form/modal documentation Add conditional fly-in animation for modals Fix non-deterministic bundle compilation 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
46 lines
1.1 KiB
PHP
Executable File
46 lines
1.1 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* Quill WYSIWYG Editor CDN Bundle
|
|
*
|
|
* Provides the Quill editor via CDN for rich text editing.
|
|
* Quill is a powerful, modern WYSIWYG editor built for the modern web.
|
|
*
|
|
* Features:
|
|
* - Rich text editing with customizable toolbar
|
|
* - Clean HTML output
|
|
* - Extensive API for customization
|
|
* - Themes: Snow (standard) and Bubble (inline)
|
|
* - Module-based architecture
|
|
*/
|
|
|
|
namespace App\RSpade\Bundles;
|
|
|
|
use App\RSpade\Core\Bundle\Rsx_Bundle_Abstract;
|
|
|
|
class Quill_Bundle extends Rsx_Bundle_Abstract
|
|
{
|
|
/**
|
|
* Define the bundle configuration
|
|
*
|
|
* @return array Bundle configuration
|
|
*/
|
|
public static function define(): array
|
|
{
|
|
return [
|
|
'include' => [], // No local files
|
|
'cdn_assets' => [
|
|
'css' => [
|
|
[
|
|
'url' => 'https://cdn.jsdelivr.net/npm/quill@2.0.2/dist/quill.snow.css',
|
|
],
|
|
],
|
|
'js' => [
|
|
[
|
|
'url' => 'https://cdn.jsdelivr.net/npm/quill@2.0.2/dist/quill.js',
|
|
],
|
|
],
|
|
],
|
|
];
|
|
}
|
|
}
|