get_default_value(); } if ( ! isset( $widget[ $control['name'] ] ) ) { return $control['default']; } return $widget[ $control['name'] ]; } /** * Retrieve data control style value. * * Get the style of the control. Used when adding CSS rules to the control * while extracting CSS from the `selectors` data argument. * * @since 1.5.0 * @access public * * @param string $css_property CSS property. * @param string $control_value Control value. * * @return string Control style value. */ public function get_style_value( $css_property, $control_value ) { return $control_value; } /** * Retrieve data control unique ID. * * Get the unique ID of the control. Used to set a uniq CSS ID for the * element. * * @since 1.5.0 * @access protected * * @param string $input_type Input type. Default is 'default'. * * @return string Unique ID. */ protected function get_control_uid( $input_type = 'default' ) { return 'elementor-control-' . $input_type . '-{{{ data._cid }}}'; } }