Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 16822 Rev 16979
Línea 840... Línea 840...
840
 
840
 
841
                    if ($type == Message::TYPE_DOCUMENT) {
841
                    if ($type == Message::TYPE_DOCUMENT) {
842
                        try {
842
                        try {
843
                            $target_path = $this->config['leaderslinked.fullpath.message'] . DIRECTORY_SEPARATOR . $message->uuid;
843
                            $target_path = $this->config['leaderslinked.fullpath.message'] . DIRECTORY_SEPARATOR . $message->uuid;
844
                            if (!file_exists($target_path)) {
844
                            if (!file_exists($target_path)) {
845
                                mkdir($target_path, 0755);
845
                                mkdir($target_path, 0755, true);
Línea 846... Línea 846...
846
                            }
846
                            }
847
 
847
 
848
                            $full_filename = $target_path  . DIRECTORY_SEPARATOR . $message_filename;
848
                            $full_filename = $target_path  . DIRECTORY_SEPARATOR . $message_filename;
Línea 869... Línea 869...
869
                    }
869
                    }
870
                    if ($type == Message::TYPE_IMAGE) {
870
                    if ($type == Message::TYPE_IMAGE) {
871
                        try {
871
                        try {
872
                            $target_path = $this->config['leaderslinked.fullpath.message'] . DIRECTORY_SEPARATOR . $message->uuid;
872
                            $target_path = $this->config['leaderslinked.fullpath.message'] . DIRECTORY_SEPARATOR . $message->uuid;
873
                            if (!file_exists($target_path)) {
873
                            if (!file_exists($target_path)) {
874
                                mkdir($target_path, 0755);
874
                                mkdir($target_path, 0755, true);
875
                            }
875
                            }
Línea 876... Línea 876...
876
 
876
 
Línea 877... Línea 877...
877
                            list($target_width, $target_height) = explode('x', $this->config['leaderslinked.image_sizes.message_image_size']);
877
                            list($target_width, $target_height) = explode('x', $this->config['leaderslinked.image_sizes.message_image_size']);
Línea 892... Línea 892...
892
                    }
892
                    }
893
                    if ($type == Message::TYPE_VIDEO) {
893
                    if ($type == Message::TYPE_VIDEO) {
894
                        try {
894
                        try {
895
                            $target_path = $this->config['leaderslinked.fullpath.message'] . DIRECTORY_SEPARATOR . $message->uuid;
895
                            $target_path = $this->config['leaderslinked.fullpath.message'] . DIRECTORY_SEPARATOR . $message->uuid;
896
                            if (!file_exists($target_path)) {
896
                            if (!file_exists($target_path)) {
897
                                mkdir($target_path, 0755);
897
                                mkdir($target_path, 0755, true);
898
                            }
898
                            }
Línea 899... Línea 899...
899
 
899
 
Línea 900... Línea 900...
900
                            $full_filename = $target_path  . DIRECTORY_SEPARATOR . $message_filename;
900
                            $full_filename = $target_path  . DIRECTORY_SEPARATOR . $message_filename;