[ 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 ]
📄 Groups.js
747 B
SET
[ EDIT ]
|
[ DEL ]
📄 Media.js
1,903 B
SET
[ EDIT ]
|
[ DEL ]
📄 Page.js
428 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: Media.js
import { __, sprintf } from "@wordpress/i18n"; import { Button, BaseControl } from "@wordpress/components"; import { MediaUpload } from "@wordpress/media-utils"; import classNames from "classnames"; export default ({ option, label, help, allowedTypes, value, className, maxWidth, onSelect, }) => { return ( <div className={classNames( className, "presto-settings__setting is-media-control" )} > <BaseControl className="editor-video-poster-control"> <BaseControl.VisualLabel>{label}</BaseControl.VisualLabel> {value && ( <BaseControl> <img style={{ maxWidth, border: "1px solid #dcdcdc", }} src={value} /> </BaseControl> )} <br /> <MediaUpload title={help} onSelect={onSelect} allowedTypes={allowedTypes} render={({ open }) => ( <Button isSecondary onClick={open} className={!value ? "button-select" : "button-replace"} > {!value ? __("Select", "presto-player") : __("Replace", "presto-player")} </Button> )} />{" "} <p id={`video-block__logo-image-description-${option?.id}`} hidden> {value ? sprintf( /* translators: %s: poster image URL. */ __("The current logo image url is %s", "presto-player"), value ) : __("There is no logo image currently selected", "presto-player")} </p> {!!value && ( <Button onClick={() => onSelect("")} isTertiary> {__("Remove", "presto-player")} </Button> )} </BaseControl> <br /> </div> ); };