You are here

public function nexcloud::set_newtags in filedepot 7

Same name and namespace in other branches
  1. 6 nexcloud.class.php \nexcloud::set_newtags()
1 call to nexcloud::set_newtags()
nexcloud::update_tags in ./nexcloud.class.php

File

./nexcloud.class.php, line 441
nexcloud.class.php Tag Cloud class for the filedepot module

Class

nexcloud
@file nexcloud.class.php Tag Cloud class for the filedepot module

Code

public function set_newtags($newtags) {
  $newtags = $this
    ->filtertag($newtags);
  if (!empty($newtags)) {
    $this->_newtags = str_replace(array(
      "\n",
      ';',
    ), ',', $newtags);
  }
}