>
'.$title.''; } echo $before; $meta = ob_get_clean(); if (strlen($meta) > 0) { echo ''; } ?>
"; if ( !art_is_empty_html($title)) echo '
' . $title . '
'; echo '
' . $content . '
'; echo ''; } function art_block_wrapper($args) { $id = art_get_array_value($args, 'id'); $class = art_get_array_value($args, 'class'); $title = art_get_array_value($args, 'title'); $content = art_get_array_value($args, 'content'); if (art_is_empty_html($title) && art_is_empty_html($content)) return; if ($id) { $id = ' id="' . $id . '"'; $args['id'] = $id; } if ($class) { $class = ' ' . $class; } $begin = <<
EOL; $begin_title = <<

EOL; $end_title = <<

EOL; $begin_content = <<
EOL; $end_content = <<
EOL; $end = << EOL; echo $begin; if ($begin_title && $end_title && !art_is_empty_html($title)) { echo $begin_title . $title . $end_title; } echo $begin_content; echo $content; echo $end_content; echo $end; } function art_vmenu_wrapper($args) { $id = art_get_array_value($args, 'id'); $class = art_get_array_value($args, 'class'); $title = art_get_array_value($args, 'title'); $content = art_get_array_value($args, 'content'); if (art_is_empty_html($title) && art_is_empty_html($content)) return; if ($id) { $id = ' id="' . $id . '"'; $args['id'] = $id; } if ($class) { $class = ' ' . $class; } $begin = <<
EOL; $begin_title = <<

EOL; $end_title = <<

EOL; $begin_content = <<
EOL; $end_content = <<
EOL; $end = << EOL; echo $begin; if ($begin_title && $end_title && !art_is_empty_html($title)) { echo $begin_title . $title . $end_title; } echo $begin_content; echo $content; echo $end_content; echo $end; }