@@ 76-121 (lines=46) @@ | ||
73 | ||
74 | $limit_types = trim( str_replace( array( ' ', '.', "\n", "\t", ';' ), array( '', ',', ',', ',' ), $limit_types ), ',' ); |
|
75 | ||
76 | if ( pods_version_check( 'wp', '3.5' ) ) { |
|
77 | $mime_types = wp_get_mime_types(); |
|
78 | ||
79 | if ( in_array( $limit_file_type, array( 'images', 'audio', 'video' ) ) ) { |
|
80 | $new_limit_types = array(); |
|
81 | ||
82 | foreach ( $mime_types as $type => $mime ) { |
|
83 | if ( 0 === strpos( $mime, $limit_file_type ) ) { |
|
84 | $type = explode( '|', $type ); |
|
85 | ||
86 | $new_limit_types = array_merge( $new_limit_types, $type ); |
|
87 | } |
|
88 | } |
|
89 | ||
90 | if ( !empty( $new_limit_types ) ) |
|
91 | $limit_types = implode( ',', $new_limit_types ); |
|
92 | } |
|
93 | elseif ( 'any' != $limit_file_type ) { |
|
94 | $new_limit_types = array(); |
|
95 | ||
96 | $limit_types = explode( ',', $limit_types ); |
|
97 | ||
98 | foreach ( $limit_types as $k => $limit_type ) { |
|
99 | $found = false; |
|
100 | ||
101 | foreach ( $mime_types as $type => $mime ) { |
|
102 | if ( 0 === strpos( $mime, $limit_type ) ) { |
|
103 | $type = explode( '|', $type ); |
|
104 | ||
105 | foreach ( $type as $t ) { |
|
106 | if ( !in_array( $t, $new_limit_types ) ) |
|
107 | $new_limit_types[] = $t; |
|
108 | } |
|
109 | ||
110 | $found = true; |
|
111 | } |
|
112 | } |
|
113 | ||
114 | if ( !$found ) |
|
115 | $new_limit_types[] = $limit_type; |
|
116 | } |
|
117 | ||
118 | if ( !empty( $new_limit_types ) ) |
|
119 | $limit_types = implode( ',', $new_limit_types ); |
|
120 | } |
|
121 | } |
|
122 | ||
123 | if ( !empty( $limit_types ) ) |
|
124 | $plupload_init[ 'filters' ][ 0 ][ 'extensions' ] = $limit_types; |
@@ 834-879 (lines=46) @@ | ||
831 | ||
832 | $limit_types = trim( str_replace( array( ' ', '.', "\n", "\t", ';' ), array( '', ',', ',', ',' ), $limit_types ), ',' ); |
|
833 | ||
834 | if ( pods_version_check( 'wp', '3.5' ) ) { |
|
835 | $mime_types = wp_get_mime_types(); |
|
836 | ||
837 | if ( in_array( $limit_file_type, array( 'images', 'audio', 'video' ) ) ) { |
|
838 | $new_limit_types = array(); |
|
839 | ||
840 | foreach ( $mime_types as $type => $mime ) { |
|
841 | if ( 0 === strpos( $mime, $limit_file_type ) ) { |
|
842 | $type = explode( '|', $type ); |
|
843 | ||
844 | $new_limit_types = array_merge( $new_limit_types, $type ); |
|
845 | } |
|
846 | } |
|
847 | ||
848 | if ( !empty( $new_limit_types ) ) |
|
849 | $limit_types = implode( ',', $new_limit_types ); |
|
850 | } |
|
851 | elseif ( 'any' != $limit_file_type ) { |
|
852 | $new_limit_types = array(); |
|
853 | ||
854 | $limit_types = explode( ',', $limit_types ); |
|
855 | ||
856 | foreach ( $limit_types as $k => $limit_type ) { |
|
857 | $found = false; |
|
858 | ||
859 | foreach ( $mime_types as $type => $mime ) { |
|
860 | if ( 0 === strpos( $mime, $limit_type ) ) { |
|
861 | $type = explode( '|', $type ); |
|
862 | ||
863 | foreach ( $type as $t ) { |
|
864 | if ( !in_array( $t, $new_limit_types ) ) |
|
865 | $new_limit_types[] = $t; |
|
866 | } |
|
867 | ||
868 | $found = true; |
|
869 | } |
|
870 | } |
|
871 | ||
872 | if ( !$found ) |
|
873 | $new_limit_types[] = $limit_type; |
|
874 | } |
|
875 | ||
876 | if ( !empty( $new_limit_types ) ) |
|
877 | $limit_types = implode( ',', $new_limit_types ); |
|
878 | } |
|
879 | } |
|
880 | ||
881 | $limit_types = explode( ',', $limit_types ); |
|
882 |