Files
rspade_system/app/RSpade/Bundles/Quill_Bundle.php
root 29c657f7a7 Exclude tests directory from framework publish
Add 100+ automated unit tests from .expect file specifications
Add session system test
Add rsx:constants:regenerate command test
Add rsx:logrotate command test
Add rsx:clean command test
Add rsx:manifest:stats command test
Add model enum system test
Add model mass assignment prevention test
Add rsx:check command test
Add migrate:status command test

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

Co-Authored-By: Claude <noreply@anthropic.com>
2025-12-25 03:59:58 +00:00

46 lines
1.2 KiB
PHP

<?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_Asset_Bundle_Abstract;
class Quill_Bundle extends Rsx_Asset_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',
],
],
],
];
}
}