Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
105cc28
Add Headline Testing feature implementation
Crixu Aug 12, 2025
a3872a0
Improve script loading by using proper WordPress wp_enqueue_script in…
Crixu Aug 12, 2025
d341247
Fix PHPStan type issues: remove allowed_user_roles from type definiti…
Crixu Aug 12, 2025
426fec3
Fix remaining PHPStan type issues: improve validation logic, add prop…
Crixu Aug 12, 2025
0aa09e5
Fix script loading error: replace data attributes with query paramete…
Crixu Aug 12, 2025
4dab144
Fix radio button saving: correct HTML name generation for nested opti…
Crixu Aug 12, 2025
f138564
Fix live update timeout: always include timeout value in script param…
Crixu Aug 12, 2025
86e070e
Fix text field saving: add proper nested option handling for headline…
Crixu Aug 12, 2025
89af7e4
Fixed correct script enquing and configurations
Crixu Aug 12, 2025
c3700f1
Fixed Live Update Timeouts not being saved
Crixu Aug 12, 2025
e5f34c0
refactor: reduce code duplication in headline testing validation
Crixu Aug 12, 2025
0faca75
Added highly recommended to the helper text
Crixu Aug 13, 2025
6a7ad50
Merge branch 'develop' into feature/lradke-add-headline-testing-insta…
acicovic Oct 2, 2025
943e83f
Remove some unneeded modifications
acicovic Oct 3, 2025
7cf310e
class-settings-page.php: Improve whitespace and some DocBlocks
acicovic Oct 3, 2025
c95385b
print_text_tag(): Add support for number input attributes
acicovic Oct 3, 2025
9b92295
class-settings-page.php: Simplify and deduplicate
acicovic Oct 3, 2025
6a46eb6
Fix whitespace
acicovic Oct 6, 2025
94f0812
Remove unneeded uses
acicovic Oct 6, 2025
c8a4038
Merge branch 'develop' into feature/lradke-add-headline-testing-insta…
acicovic Oct 6, 2025
cc439e2
activation-flow.spec.ts: Add Headline Testing section testing
acicovic Oct 6, 2025
e3ccca4
Headline Testing settings endpoint: Use Subvalue_Spec in get_subvalue…
acicovic Oct 6, 2025
7630a43
class-settings-page.php: Simplify and move some code
acicovic Oct 7, 2025
312d026
Headline Testing: Add script integration tests
acicovic Oct 8, 2025
3f2b2b5
Headline Testing: Improve/fix/simplify main class
acicovic Oct 8, 2025
8ab4e38
add_data_attributes_to_script_tag: Check for filter existence before …
acicovic Oct 8, 2025
ec341e9
Fix some security issues
acicovic Oct 8, 2025
3d04606
Merge branch 'develop' into feature/lradke-add-headline-testing-insta…
acicovic Oct 8, 2025
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
4 changes: 2 additions & 2 deletions phpstan.neon
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ parameters:
- vendor/php-stubs/wordpress-tests-stubs/wordpress-tests-stubs.php
type_coverage:
return_type: 87.6
param_type: 79.1
property_type: 0 # We can't use typed properties until PHP 7.4 becomes the plugin's minimum version. https://php.watch/versions/7.4/typed-properties
param_type: 79
property_type: 1.4
constant_type: 0 # We can't use typed constants until PHP 8.3 becomes the plugin's minimum version. https://php.watch/versions/8.3/typed-constants
print_suggestions: false
typeAliases:
Expand Down
Loading
Loading