type ) {
default:
case 'heading':
echo '
' . $this->label . '
';
if ( $this->description != '' ) {
echo '' . $this->description . '
';
}
break;
case 'message':
echo '' . $this->label . '
';
if ( $this->description != '' ) {
echo '' . $this->description . '
';
}
break;
case 'list':
echo '';
if ( $this->label ) {
echo '
' . $this->label . '
';
}
if ( $this->description != '' ) {
echo '
' . $this->description . '
';
}
if ( is_array( $this->list ) && ! empty( $this->list ) ) {
echo '
';
foreach ( $this->list as $l ) {
echo '- ' . wp_kses_post( $l ) . '
';
}
echo '
';
}
if ( !empty( $this->button ) ) {
echo '
'.esc_html( $this->button['label'] ).'';
}
echo '
';
break;
case 'hr' :
echo '
';
break;
}
}
}