Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 7236 | Rev 16766 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 7236 Rev 7237
Línea 456... Línea 456...
456
 
456
 
457
                if($topicMapper->update($topic)) {
457
                if($topicMapper->update($topic)) {
458
                    $topic = $topicMapper->fetchOne($topic->id);
458
                    $topic = $topicMapper->fetchOne($topic->id);
459
                    $fileBase64Content = $this->params()->fromPost('file');
459
                    $fileBase64Content = $this->params()->fromPost('file');
-
 
460
                    try {
460
                    try {
461
                        $target_path = $this->config['leaderslinked.fullpath.microlearning_topic'] . $topic->uuid;
Línea 461... Línea 462...
461
                        if($topic->image) {
462
                        if($topic->image) {
462
                                
463
                                
463
                            if(!image ::delete($target_path, $topic->image)) {
464
                            if(!image ::delete($target_path, $topic->image)) {
464
                                return new JsonModel([
465
                                return new JsonModel([
465
                                    'success'   => false,
466
                                    'success'   => false,
466
                                    'data'   =>  'ERROR_THERE_WAS_AN_ERROR'
467
                                    'data'   =>  'ERROR_THERE_WAS_AN_ERROR'
467
                                ]);
468
                                ]);
468
                            }
469
                            }
469
                        }
-
 
-
 
470
                        }
470
                        $fileBase64Content = base64_decode($fileBase64Content);
471
                        $fileBase64Content = base64_decode($fileBase64Content);
471
                        $target_path = $this->config['leaderslinked.fullpath.microlearning_topic'] . $topic->uuid;
472
                       
472
                        $topic_filename      = 'topic-' .uniqid() . '.jpg';
473
                        $topic_filename      = 'topic-' .uniqid() . '.jpg';
473
                        $topic_tmp_filename = 'data' . DIRECTORY_SEPARATOR . 'tmp';
474
                        $topic_tmp_filename = 'data' . DIRECTORY_SEPARATOR . 'tmp';
474
                        if(!file_exists($topic_tmp_filename)) {
475
                        if(!file_exists($topic_tmp_filename)) {