';
if(!empty($attributes['label']) && $attributes['label']!='' && !empty($attributes['name']) && $attributes['name']!=''){
$html .= '
';
if ($config['useeditor'] == 0) {
$html .= '
';
} else {
$settings = array(
'textarea_name' => $attributes['name'],
//'quicktags' => array( 'buttons' => 'em,strong,link' ),
'media_buttons' => false,
'tinymce' => array(
'theme_advanced_buttons1' => 'bold,italic,strikethrough,separator,bullist,numlist,separator,blockquote,separator,justifyleft,justifycenter,justifyright,separator,link,unlink,separator,undo,redo,separator',
'theme_advanced_buttons2' => '',
),
'editor_css' => ''
);
ob_start();
wp_editor( htmlspecialchars_decode( $attributes['value'] ), $attributes['name'], $settings );
$html .= ob_get_clean();
if(!empty($attributes['help']) && $attributes['help']!=''){
$html .= '
'.$attributes['help'].'
';
}
}
$html .= '