public function actionUploadProducts() { ProductsFtp::getFiles(); ProductsFtp::getContentImages(); GalleryPhotoFtp::getFiles(); GalleryPhotoFtp::getImages(); \Yii::$app->getSession()->setFlash('success', 'Товары успешно загружены'); return $this->redirect('index'); }
public static function parseModel($local_file) { //сначала удалим весь каталог GalleryPhotoFtp::deleteImages(); if (file_exists($local_file)) { $xml = simplexml_load_file($local_file); foreach ($xml->image as $imageXML) { self::SaveModel($imageXML); } } else { exit('Не удалось открыть файл images.xml.'); } }