WP_Media_List_Table::current_action()publicWP 1.0

Method of the class: WP_Media_List_Table{}

No Hooks.

Return

String.

Usage

$WP_Media_List_Table = new WP_Media_List_Table();
$WP_Media_List_Table->current_action();

WP_Media_List_Table::current_action() code WP 6.5.2

public function current_action() {
	if ( isset( $_REQUEST['found_post_id'] ) && isset( $_REQUEST['media'] ) ) {
		return 'attach';
	}

	if ( isset( $_REQUEST['parent_post_id'] ) && isset( $_REQUEST['media'] ) ) {
		return 'detach';
	}

	if ( isset( $_REQUEST['delete_all'] ) || isset( $_REQUEST['delete_all2'] ) ) {
		return 'delete_all';
	}

	return parent::current_action();
}