Вышла локализация на русском языке для Joomla 3.9.24. Над локализацией работало несколько человек большое спасибо всем, кто помогал.
Свершилось чудо, в Joomla решили, что выпускать устаревший CSS фреймворк в новой версии CMS - это не есть правильно.
Контент-плагин Joomla, позволяющий вставлять информацию из материалов и пользовательских полей материала в любом месте, где работают контент-плагины с помощью шорт-кода.
// resize to thumbnail... if(!$this->resizeImage($file, $thumbfile, $this->_thumbwidth, $this->_thumbheight, $filename)){ $this->raiseError("Error: resizing thumbnail image failed."); return false; }
// resize to thumbnail...// resize thumb fix - check if the image file is bigger than allowed thumbnail if($imginfo[0] > $this->_thumbwidth || $imginfo[1] > $this->_maxheight){ if(!$this->resizeImage($file, $thumbfile, $this->_thumbwidth, $this->_thumbheight, $filename)){ $this->raiseError("Error: resizing thumbnail image failed."); return false; }// resize thumb fix - else, just copy the file to the thumbnail file } else { if (!@copy($file, $thumbfile)){ // some error occured while copying the file to the thumbnail file $this->raiseError("Error occurred copying the uploaded file to the thumbnail."); return false; } }