Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Emit an event in Nova whenever the order of a flexible content group changes #484

Open
wants to merge 25 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
60bab43
Add support for TinyMCE editors by recreating them after their panels…
MaxKorlaar Jun 14, 2022
052784c
Update field.js from master and recompile with tinyMCE support
MaxKorlaar Aug 18, 2022
9b7cc82
Current TinyMCE logic was not compatible with TinyMCE 6 (we're using …
MaxKorlaar Aug 18, 2022
f925851
Build field for production and with compatibility for TinyMCE editors
MaxKorlaar Oct 13, 2022
24ff184
Replace the logic to remove and re-add tinyMCE editors by a Nova even…
MaxKorlaar Oct 18, 2022
148f348
Update Layout.php
Jon78 Dec 15, 2022
8eefdbd
Add support for TinyMCE editors by recreating them after their panels…
MaxKorlaar Jun 14, 2022
6971420
Update field.js from master and recompile with tinyMCE support
MaxKorlaar Aug 18, 2022
543d8e3
Current TinyMCE logic was not compatible with TinyMCE 6 (we're using …
MaxKorlaar Aug 18, 2022
3ff8f64
Build field for production and with compatibility for TinyMCE editors
MaxKorlaar Oct 13, 2022
33e90f6
Replace the logic to remove and re-add tinyMCE editors by a Nova even…
MaxKorlaar Oct 18, 2022
5b8a57b
Merge remote-tracking branch 'origin/master'
Oct 19, 2023
07a578d
- changed rtrim to str_replace during "media_collection_suffix" removal
Dec 20, 2023
b0a0648
Add missing method
mabdullahsari Jan 15, 2024
a2a7455
Update README.md
voidgraphics Feb 14, 2024
d9fd1e3
Fix delete button
nbolender Dec 1, 2023
20217eb
compile
nbolender Dec 1, 2023
852c213
get Underlying Media Model function
LTKort Feb 26, 2024
bcfa8bf
L11 Support
LTKort Mar 12, 2024
87bb411
Revert danger-button & fix indent
LTKort Mar 12, 2024
214c8fb
build JS
LTKort Mar 12, 2024
70d5628
Group Key loop fix
LTKort Mar 12, 2024
80838d6
Add support for TinyMCE editors by recreating them after their panels…
MaxKorlaar Jun 14, 2022
a07e543
Current TinyMCE logic was not compatible with TinyMCE 6 (we're using …
MaxKorlaar Aug 18, 2022
86597c8
Replace the logic to remove and re-add tinyMCE editors by a Nova even…
MaxKorlaar Oct 18, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add missing method
mabdullahsari authored and MaxKorlaar committed Mar 14, 2024
commit b0a0648f2f979c6b8905f69e21ac296409f7b116
10 changes: 10 additions & 0 deletions src/Layouts/Layout.php
Original file line number Diff line number Diff line change
@@ -148,6 +148,16 @@ public function __construct($title = null, $name = null, $fields = null, $key =
$this->setRawAttributes($this->cleanAttributes($attributes));
}

/**
* Determine if accessing missing attributes is disabled.
*
* @return bool
*/
public static function preventsAccessingMissingAttributes()
{
return false;
}

/**
* Set the parent model instance
*