<?php
$default_settings = [
'user_type' => 'sign-in',
'title' => '',
'btn_label' => '',
'btn_text' => '',
'btn_link' => '',
'footer_text' => '',
'footer_link' => '',
'ct_animate' => '',
'ct_animate_delay' => '',
];
$settings = array_merge($default_settings, $settings);
extract($settings);
if ( ! empty( $btn_link['url'] ) ) {
$widget->add_render_attribute( 'btn_link', 'href', $btn_link['url'] );
if ( $btn_link['is_external'] ) {
$widget->add_render_attribute( 'btn_link', 'target', '_blank' );
}
if ( $btn_link['nofollow'] ) {
$widget->add_render_attribute( 'btn_link', 'rel', 'nofollow' );
}
}
if ( ! empty( $footer_link['url'] ) ) {
$widget->add_render_attribute( 'footer_link', 'href', $footer_link['url'] );
if ( $footer_link['is_external'] ) {
$widget->add_render_attribute( 'footer_link', 'target', '_blank' );
}
if ( $footer_link['nofollow'] ) {
$widget->add_render_attribute( 'footer_link', 'rel', 'nofollow' );
}
}
?>
<div class="ct-user <?php echo esc_attr($ct_animate); ?>" data-wow-delay="<?php echo esc_attr($ct_animate_delay); ?>ms">
<div class="ct-user-inner">
<div class="ct-user-holder">
<div class="ct-user-meta">
<?php if(!empty($title)) : ?>
<h4 class="ct-user-title"><?php echo esc_attr($title); ?></h4>
<?php endif; ?>
<?php if($user_type == 'sign-in') {
echo do_shortcode('[ct-user-form form_type="login" is_logged="profile"]');
} else {
echo do_shortcode('[ct-user-form form_type="register"]');
} ?>
</div>
<?php if(!empty($btn_text)) : ?>
<div class="ct-user-bottom">
<?php echo esc_attr($btn_label); ?>
<a <?php ct_print_html($widget->get_render_attribute_string( 'btn_link' )); ?>><?php echo esc_attr($btn_text); ?></a>
</div>
<?php endif; ?>
</div>
<?php if(!empty($footer_text)) : ?>
<div class="ct-user-footer">
<a <?php ct_print_html($widget->get_render_attribute_string( 'footer_link' )); ?>><?php echo esc_attr($footer_text); ?></a>
</div>
<?php endif; ?>
</div>
</div> |