BP_Document::bp_document_remove_temp_directory( $dir )

Remove all temp directory.

Description

Parameters

$dir

(Required)

Source

File: bp-document/classes/class-bp-document.php

228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
public static function bp_document_remove_temp_directory( $dir ) {
    if ( is_dir( $dir ) ) {
        $objects = scandir( $dir );
        foreach ( $objects as $object ) {
            if ( $object != '.' && $object != '..' ) {
                if ( filetype( $dir . '/' . $object ) == 'dir' ) {
                    self::bp_document_remove_temp_directory( $dir . '/' . $object );
                } else {
                    unlink( $dir . '/' . $object );
                }
            }
        }
        reset( $objects );
        rmdir( $dir );
    }
}

Changelog

Changelog
Version Description
BuddyBoss 1.4.0 Introduced.

Questions?

We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.