public function FilebrowserStorage::insertRecord in Filebrowser 8.2
Same name and namespace in other branches
- 3.x src/Services/FilebrowserStorage.php \Drupal\filebrowser\Services\FilebrowserStorage::insertRecord()
File
- src/
Services/ FilebrowserStorage.php, line 173
Class
Namespace
Drupal\filebrowser\ServicesCode
public function insertRecord($record) {
//fixme: root folder has no 'file_data'
if (!isset($record['nid'])) {
debug($record);
}
// todo: check file_data index is not set for an empty filebrowser node.
if (empty($record['file_data'])) {
$record['file_data'] = '';
}
return $this->connection
->insert('filebrowser_content')
->fields([
'nid' => $record['nid'],
'root' => $record['root'],
'path' => $record['path'],
'file_data' => serialize($record['file_data']),
])
->execute();
}