WP_Filesystem_Base::group( string $file )

Get the file’s group.


Parameters

$file

(string) (Required) Path to the file.


Return

(string|bool) The group or false on error.


Source

File: wp-admin/includes/class-wp-filesystem-base.php

	public function group( $file ) {
		return false;
	}

Changelog

Changelog
Version Description
WP-2.5.0 Introduced.