Same name and namespace in other branches
  1. 7.x includes/common.inc \drupal_implode_tags()

Implode an array of tags into a string.

See also

drupal_explode_tags()

2 calls to drupal_implode_tags()
comment_unpublish_by_keyword_action_form in modules/comment/comment.module
Form builder; Prepare a form for blacklisted keywords.
node_unpublish_by_keyword_action_form in modules/node/node.module

File

includes/common.inc, line 3817
Common functions that many Drupal modules will need to reference.

Code

function drupal_implode_tags($tags) {
  $encoded_tags = array();
  foreach ($tags as $tag) {

    // Commas and quotes in tag names are special cases, so encode them.
    if (strpos($tag, ',') !== FALSE || strpos($tag, '"') !== FALSE) {
      $tag = '"' . str_replace('"', '""', $tag) . '"';
    }
    $encoded_tags[] = $tag;
  }
  return implode(', ', $encoded_tags);
}