Code Duplication    Length = 10-11 lines in 2 locations

classes/fields/avatar.php 1 location

@@ 114-123 (lines=10) @@
111
            )
112
        );
113
114
        if ( !pods_version_check( 'wp', '3.5' ) ) {
115
            unset( $options[ self::$type . '_modal_title' ] );
116
            unset( $options[ self::$type . '_modal_add_button' ] );
117
118
            $options[ self::$type . '_attachment_tab' ][ 'default' ] = 'type';
119
            $options[ self::$type . '_attachment_tab' ][ 'data' ] = array(
120
                'type' => __( 'Upload File', 'pods' ),
121
                'library' => __( 'Media Library', 'pods' )
122
            );
123
        }
124
125
        return $options;
126
    }

classes/fields/file.php 1 location

@@ 188-198 (lines=11) @@
185
            )
186
        );
187
188
        if ( !pods_version_check( 'wp', '3.5' ) ) {
189
            unset( $options[ self::$type . '_linked' ] );
190
            unset( $options[ self::$type . '_modal_title' ] );
191
            unset( $options[ self::$type . '_modal_add_button' ] );
192
193
            $options[ self::$type . '_attachment_tab' ][ 'default' ] = 'type';
194
            $options[ self::$type . '_attachment_tab' ][ 'data' ] = array(
195
                'type' => __( 'Upload File', 'pods' ),
196
                'library' => __( 'Media Library', 'pods' )
197
            );
198
        }
199
200
        return $options;
201
    }