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; } }