public function nexcloud::set_newtags in filedepot 7
Same name and namespace in other branches
- 6 nexcloud.class.php \nexcloud::set_newtags()
1 call to nexcloud::set_newtags()
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);
}
}