foreach ($this->request->getUploadedFiles(true) as $file) {
$file_name = sha1(mt_rand(0, 100) . mt_rand(0, mt_rand(0, 100))) . $file->getName();
if($file->moveTo($this->config->application->imagesDir . $file_name)){
$article->preview_img = $file_name;
}
}