This commit is contained in:
2025-12-04 22:33:05 +01:00
parent 316175e158
commit 9dee06cdd6
145 changed files with 16865 additions and 88 deletions

View File

@@ -0,0 +1,19 @@
/* /assets/js/bridge/library-plugin.js (Plugin für Standard-Bausteine) */
(function(B){
if (!B || typeof grapesjs === 'undefined') return;
const PluginName = 'bridge-library-plugin';
/**
* GrapesJS Plugin Registrierung: bridge-library-plugin
* Dieses Plugin dient als Platzhalter für die zukünftige Konfiguration
* der Standard-Blöcke (Bausteine). Es fügt aktuell keine Blöcke hinzu,
* sondern wartet auf die Blöcke aus dem Preset (gjs-preset-newsletter).
* Der Categorization Master wird diese Blöcke später in die Kategorie 'bausteine' verschieben.
*/
grapesjs.plugins.add(PluginName, (editor, opts = {}) => {
console.log(`[${PluginName}] Plugin registriert. Erwartet Blöcke vom Preset.`);
// ToDo: Zukünftige Standardblöcke hier hinzufügen
});
})(window.BridgeParts || (window.BridgeParts = {}));