HEX
Server: Apache
System: Linux hostingsrv80.dondominio.com 6.12.57+deb13-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.12.57-1 (2025-11-05) x86_64
User: (1021600)
PHP: 8.4.18
Disabled: system,passthru,popen,proc_close,proc_get_status,proc_nice,proc_open,proc_terminate,shell_exec,exec,ini_alter,show_source,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,mail,eval
Upload Files
File: /hosting/www/puputfest.cat/public/wp-content/themes/bridge/vc_templates/vc_text_separator.php
<?php
$output = $title = $title_align = $el_class = '';
extract(shortcode_atts(array(
    'title' => esc_html__('Title', 'bridge'),
    'title_align' => 'separator_align_center',
    'border' => '',
    'border_color' => '',
    'title_color' => '',
    'background_color' => '',
    'el_class' => ''
), $atts));
$el_class = $this->getExtraClass($el_class);
$css_class = apply_filters(VC_SHORTCODE_CUSTOM_CSS_FILTER_TAG, 'vc_text_separator wpb_content_element full '.$title_align.$el_class, $this->settings['base']);
$output .= '<div class="'.$css_class.'"><div';
if($border != "" || $border_color != "" || $title_color != ""){
		$output .= " style='";
			if($background_color != ""){
				$output .="background-color:".$background_color.";";
			}
			if($border_color != ""){
				$output .=" border:1px solid ".$border_color.";";
			}
			if($title_color != ""){
				$output .=" color:".$title_color.";";
			}
		$output.="'";
	}
$output .= '>';

$output .= '<span>' . $title . '</span>';

$output .='</div></div>'.$this->endBlockComment('separator')."\n";

echo bridge_qode_get_module_part( $output );