'', 'is_external' => '', 'nofollow' => '', ]; } /** * Get url control default settings. * * Retrieve the default settings of the url control. Used to return the default * settings while initializing the url control. * * @since 1.0.0 * @access protected * * @return array Control default settings. */ protected function get_default_settings() { return [ 'label_block' => true, 'show_external' => true, 'placeholder' => __( 'Paste URL or type', 'elementor' ), 'dynamic' => [ 'categories' => [ TagsModule::URL_CATEGORY ], 'property' => 'url', ], ]; } /** * Render url control output in the editor. * * Used to generate the control HTML in the editor using Underscore JS * template. The variables for the class are available using `data` JS * object. * * @since 1.0.0 * @access public */ public function content_template() { $control_uid = $this->get_control_uid(); $more_input_control_uid = $this->get_control_uid( 'more-input' ); $is_external_control_uid = $this->get_control_uid( 'is_external' ); $nofollow_control_uid = $this->get_control_uid( 'nofollow' ); ?>
<# if ( data.description ) { #>
{{{ data.description }}}
<# } #>