getData(['core', 'dataVersion']) < 1700 ) { // Supprime la variable path des profils, seul l'accès à l'espace et autorisé. foreach (['1', '2'] as $group) { foreach (array_keys($this->getData(['profil', $group])) as $profil) { if (is_null($this->getData(['profil', $group, $profil, 'folder', 'path'])) === false) { $path = $this->getData(['profil', $group, $profil, 'folder', 'path']); $this->setData(['profil', $group, $profil, 'folder', 'homePath', $path]); $this->setData(['profil', $group, $profil, 'folder', 'coursePath', $path]); $this->deleteData(['profil', $group, $profil, 'folder', 'path']); } } } $this->setData(['core', 'dataVersion', 1700]); } // Déplacement des if ( $this->getData(['core', 'dataVersion']) < 1800 ) { // Déplace les historiques dans les dossiers des esapaces // Parcourir les espaces foreach ($this->getData(['course']) as $courseId => $courseValues) { $data = []; //Parcourir les participants foreach ($this->getData(['user']) as $userId => $userValues) { // Un historique existe pour ce participant $report = $this->getData(['enrolment', $courseId, $userId, 'history']); if ( is_array($report) ) { // Ecriture dans un fichier report dans le dossier de l'espace $data = array_merge($data, [$userId => $report]); // Nettoyage du fichier des inscriptions // Ce fichier ne contient que l'id du participant et de la date et de l'id de la dernière page vue //$this->deleteData(['enrolment', $courseId, $userId, 'history']); } } file_put_contents(self::DATA_DIR . $courseId . '/report.json', json_encode(['report' => $data], JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES), LOCK_EX); } $this->setData(['core', 'dataVersion', 1800]); } /* $t = $this->getEnrolment('6571b5913e87e', ['pablorodriguez', 'history', 'les-titres-ou-headers']); echo"
"; var_dump($t); die(); */