Server IP : 15.235.198.142 / Your IP : 216.73.216.14 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ballsack 6.8.0-45-generic #45-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 30 12:02:04 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/yme/wp-content/plugins/ocean-extra/includes/metabox/controls/media/ |
Upload File : |
<?php /** * Media control class. * * @package OceanWP WordPress theme * @subpackage Controls * @see https://github.com/justintadlock/butterbean * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html */ /** * Media control class. * * @since 1.0.0 * @access public */ class OceanWP_ButterBean_Control_Media extends ButterBean_Control { /** * The type of control. * * @since 1.0.0 * @access public * @var string */ public $type = 'media'; /** * Array of text labels to use for the media upload frame. * * @since 1.0.0 * @access public * @var string */ public $l10n = array(); /** * Creates a new control object. * * @since 1.0.0 * @access public * @param object $manager * @param string $name * @param array $args * @return void */ public function __construct( $manager, $name, $args = array() ) { parent::__construct( $manager, $name, $args ); $this->l10n = wp_parse_args( $this->l10n, array( 'upload' => esc_html__( 'Browse', 'ocean-extra' ), ) ); } /** * Enqueue scripts/styles for the control. * * @since 1.0.0 * @access public * @return void */ public function enqueue() { wp_enqueue_media(); } /** * Adds custom data to the json array. * * @since 1.0.0 * @access public * @return void */ public function to_json() { parent::to_json(); $this->json['l10n'] = $this->l10n; } }