Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
58 commits
Select commit Hold shift + click to select a range
d091a81
Pull bulk delete entries into Lite
AbdiTolesa Apr 24, 2025
c07fad3
Add missing delete confirmation elements styling
AbdiTolesa Apr 25, 2025
c2bf684
Progressing on moving pro code to lite
AbdiTolesa Apr 25, 2025
67ec3de
Delete useless function summary
AbdiTolesa Apr 25, 2025
c219ddd
Remove return statement
AbdiTolesa Apr 25, 2025
5ff7dc1
Move Delete all Entries button into Lite
AbdiTolesa Apr 25, 2025
dceae9c
Keep entries export feature in Pro
AbdiTolesa Apr 28, 2025
389e0e4
Refactor code a bit
AbdiTolesa Apr 28, 2025
68c4b4c
Fix double entries list table appear
AbdiTolesa Apr 28, 2025
561e56f
Add a function check for bulk entry delete functionality
AbdiTolesa Apr 28, 2025
162601b
Fix some issues and workflow errors
AbdiTolesa Apr 30, 2025
8bafe1a
Fix issue failing to show entries list after csv export
AbdiTolesa Apr 30, 2025
0fc68e3
Delete commented code
AbdiTolesa Apr 30, 2025
12a42c4
Undo move function and condition removal
AbdiTolesa Apr 30, 2025
497393b
Fix potential bug
AbdiTolesa May 15, 2025
42c960b
Merge master fixing conflicts and creating a new scss file for modal
AbdiTolesa May 15, 2025
841f036
Fix PHPCS errors
AbdiTolesa May 15, 2025
5d9a267
Avoid calling bulk delete code if feature is not moved from Pro yet
AbdiTolesa May 23, 2025
db4207c
Add check before showing delete all button
AbdiTolesa May 23, 2025
b3f37f0
Move functions to a class they are called from
AbdiTolesa May 23, 2025
40a7610
Move functions to a class they are called from
AbdiTolesa May 23, 2025
50c9087
Move functions to a class they are called from
AbdiTolesa May 23, 2025
45e820d
Merge get_child_form_ids functions
AbdiTolesa May 23, 2025
ec8edc1
Add condition check before calling confirmDeleteAllEntriesModal
AbdiTolesa May 23, 2025
e9c1cb0
Fix issue with modal failing for second opening
AbdiTolesa May 30, 2025
ee41076
Remove commenting out line
AbdiTolesa May 30, 2025
1cbc2d0
Review comments incorporated
AbdiTolesa May 30, 2025
2c3da8f
Review comments incorporated
AbdiTolesa May 30, 2025
f9850a0
Review comments incorporated
AbdiTolesa May 30, 2025
21a4c90
Move related logic into separate function
AbdiTolesa May 30, 2025
0fe456d
Reduce indentation
AbdiTolesa May 30, 2025
8a7b7fd
Show entries list after bulk delete
AbdiTolesa Jun 3, 2025
64ea3b0
Merge master
AbdiTolesa Jun 3, 2025
29f4394
Address some review feedbacks
AbdiTolesa Jul 25, 2025
14c7ff9
Merge branch 'issue-5704-pull_bulk_delete_entries_into_lite' of https…
AbdiTolesa Jul 25, 2025
0f42c1f
Merge master
AbdiTolesa Jul 25, 2025
af74764
Delete Pro related code that triggers actions on entry deletes
AbdiTolesa Jul 25, 2025
25aa1a4
Merge master
AbdiTolesa Nov 6, 2025
c01cd93
Build assets
AbdiTolesa Nov 6, 2025
d92d0e8
Work on keeping trigger on delete entry actions checkbox in Pro
AbdiTolesa Nov 6, 2025
469e196
Fix eslint errors
AbdiTolesa Nov 6, 2025
1cdd83d
Build assets
AbdiTolesa Nov 6, 2025
dbea3f0
Make new hook name generic
AbdiTolesa Nov 10, 2025
52be3ac
Fix eslint error
AbdiTolesa Nov 11, 2025
f02965d
Merge branch 'master' into issue-5704-pull_bulk_delete_entries_into_lite
AbdiTolesa Nov 11, 2025
cdf5854
Build files
AbdiTolesa Nov 11, 2025
c25a436
Rebuild files
AbdiTolesa Jan 13, 2026
1ecaeaa
Fix Code styling errors
AbdiTolesa Jan 13, 2026
7ba07e0
Fix more PHPCS errors
AbdiTolesa Jan 13, 2026
8dc2fdd
Ignore file length constraint rule
AbdiTolesa Jan 13, 2026
c3c94b5
Incorporate Rector reported enhancements
AbdiTolesa Jan 13, 2026
3baa955
Rebuild files
AbdiTolesa Jan 13, 2026
7ce975f
Add StrStartsWithRector to Rector skip list
AbdiTolesa Jan 13, 2026
cea6161
Fix a code style issue
AbdiTolesa Jan 13, 2026
78dcc1d
Update function to only return array of child form ids
AbdiTolesa Jan 14, 2026
fa66edd
Update function to only return array of child form ids
AbdiTolesa Jan 14, 2026
5bc58b3
Use WPDB::Prepare and avoid suppressing SQL statements warning
AbdiTolesa Jan 15, 2026
abeb799
Rebuild files
AbdiTolesa Jan 15, 2026
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
5 changes: 5 additions & 0 deletions classes/controllers/FrmAppController.php
Original file line number Diff line number Diff line change
Expand Up @@ -592,6 +592,11 @@ public static function compare_for_update( $atts ) {
* @return void
*/
public static function admin_init() {
if ( FrmAppHelper::is_admin_page( 'formidable-entries' ) && 'destroy_all' === FrmAppHelper::get_param( 'frm_action' ) ) {
FrmEntriesController::destroy_all();
die();
}

if ( FrmAppHelper::get_param( 'delete_all' ) && FrmAppHelper::is_admin_page( 'formidable' ) && 'trash' === FrmAppHelper::get_param( 'form_type' ) ) {
FrmFormsController::delete_all();
}
Expand Down
Loading
Loading