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 819... Línea 819...
819
 
819
 
820
                    if ($type == Message::TYPE_DOCUMENT) {
820
                    if ($type == Message::TYPE_DOCUMENT) {
821
                        try {
821
                        try {
822
                            $target_path = $this->config['leaderslinked.fullpath.message'] . DIRECTORY_SEPARATOR . $message->uuid;
822
                            $target_path = $this->config['leaderslinked.fullpath.message'] . DIRECTORY_SEPARATOR . $message->uuid;
823
                            if (!file_exists($target_path)) {
823
                            if (!file_exists($target_path)) {
824
                                mkdir($target_path, 0755);
824
                                mkdir($target_path, 0755, true);
Línea 825... Línea 825...
825
                            }
825
                            }
826
 
826
 
827
                            $full_filename = $target_path  . DIRECTORY_SEPARATOR . $message_filename;
827
                            $full_filename = $target_path  . DIRECTORY_SEPARATOR . $message_filename;
Línea 848... Línea 848...
848
                    }
848
                    }
849
                    if ($type == Message::TYPE_IMAGE) {
849
                    if ($type == Message::TYPE_IMAGE) {
850
                        try {
850
                        try {
851
                            $target_path = $this->config['leaderslinked.fullpath.message'] . DIRECTORY_SEPARATOR . $message->uuid;
851
                            $target_path = $this->config['leaderslinked.fullpath.message'] . DIRECTORY_SEPARATOR . $message->uuid;
852
                            if (!file_exists($target_path)) {
852
                            if (!file_exists($target_path)) {
853
                                mkdir($target_path, 0755);
853
                                mkdir($target_path, 0755, true);
854
                            }
854
                            }
Línea 855... Línea 855...
855
 
855
 
Línea 856... Línea 856...
856
                            list($target_width, $target_height) = explode('x', $this->config['leaderslinked.image_sizes.message_image_size']);
856
                            list($target_width, $target_height) = explode('x', $this->config['leaderslinked.image_sizes.message_image_size']);
Línea 871... Línea 871...
871
                    }
871
                    }
872
                    if ($type == Message::TYPE_VIDEO) {
872
                    if ($type == Message::TYPE_VIDEO) {
873
                        try {
873
                        try {
874
                            $target_path = $this->config['leaderslinked.fullpath.message'] . DIRECTORY_SEPARATOR . $message->uuid;
874
                            $target_path = $this->config['leaderslinked.fullpath.message'] . DIRECTORY_SEPARATOR . $message->uuid;
875
                            if (!file_exists($target_path)) {
875
                            if (!file_exists($target_path)) {
876
                                mkdir($target_path, 0755);
876
                                mkdir($target_path, 0755, true);
877
                            }
877
                            }
Línea 878... Línea 878...
878
 
878
 
Línea 879... Línea 879...
879
                            $full_filename = $target_path  . DIRECTORY_SEPARATOR . $message_filename;
879
                            $full_filename = $target_path  . DIRECTORY_SEPARATOR . $message_filename;