-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Modul "0030 - Text / Download": Infotext geändert - Kleinere Anpassungen - Modul hinzugefügt: "0511 - Minibeispiel: Text / CKEditor5"
- Loading branch information
Showing
11 changed files
with
56 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
// | ||
|
||
#map_canvas { | ||
width: 100%; | ||
height: 150px; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
modulname = "0511 - Minibeispiel: Text / CKEditor5" | ||
status = 1; 0 = geplant, 1 = fertig, 2 = in Bearbeitung |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<h4><b>Minibeispiel: Text / CKEditor5</b></h4> | ||
|
||
<hr/> | ||
<b>Voraussetzungen</b> | ||
<p> | ||
<ul> | ||
<li>CKEditor5 Addon</li> | ||
</ul> | ||
</p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?php | ||
if(!rex_addon::get('cke5')->isAvailable()) { | ||
echo rex_view::error('Dieses Modul benötigt das "CKEditor5" Addon!'); | ||
} | ||
?> | ||
<fieldset class="form-horizontal"> | ||
<div class="form-group"> | ||
<label class="col-sm-12 text-left" for="value-1">Text</label> | ||
<div class="col-sm-12"> | ||
<textarea class="form-control cke5-editor" data-profile="default" data-lang="<?php echo \Cke5\Utils\Cke5Lang::getUserLang(); ?>" name="REX_INPUT_VALUE[1]">REX_VALUE[1]</textarea> | ||
</div> | ||
</div> | ||
</fieldset> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?php | ||
|
||
if(!rex_addon::get('cke5')->isAvailable()) { | ||
echo rex_view::error('Dieses Modul benötigt das "CKEditor5" Addon!'); | ||
} | ||
|
||
if ('REX_VALUE[id=1 isset=1]') { | ||
echo 'REX_VALUE[id="1" output="html"]'; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters