[ 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
/
playlist-list-item
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 Placeholder.js
2,795 B
SET
[ EDIT ]
|
[ DEL ]
📄 attributes.js
172 B
SET
[ EDIT ]
|
[ DEL ]
📄 edit.js
2,251 B
SET
[ EDIT ]
|
[ DEL ]
📄 index.js
845 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: index.js
// In your application's entrypoint import { __ } from "@wordpress/i18n"; import edit from "./edit"; import attributes from "./attributes"; /** * Block Name */ export const name = "presto-player/playlist-list-item"; /** * Block Options */ export const options = { attributes, category: "presto", parent: ["presto-player/playlist-list"], title: __("Playlist Item", "presto-player"), description: __("Playlist Item", "presto-player"), usesContext: ["presto-player/playlist-media-id"], edit, icon: ( <svg width="19" height="14" className="playlist-block-icon" viewBox="0 0 19 14" fill="none" xmlns="http://www.w3.org/2000/svg" > <path d="M0 10H7V8H0M15 8V4H13V8H9V10H13V14H15V10H19V8M11 0H0V2H11M11 4H0V6H11V4Z" fill="currentColor" /> </svg> ), };