WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )
apply_filters( "hook_name", "what_to_filter" )
.Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
Line | Code |
---|---|
898 | * |
899 | * @param string $form_post the URL to post the form to |
900 | * @param string $type the chosen Filesystem method in use |
901 | * @param boolean $error if the current request has failed to connect |
902 | * @param string $context The directory which is needed access to, The write-test will be performed on this directory by get_filesystem_method() |
903 | * @param string $extra_fields Extra POST fields which should be checked for to be included in the post. |
904 | * @return boolean False on failure. True on success. |
905 | */ |
906 | function request_filesystem_credentials($form_post, $type = '', $error = false, $context = false, $extra_fields = null) { |
907 | $req_cred = apply_filters( 'request_filesystem_credentials', '', $form_post, $type, $error, $context, $extra_fields ); |
908 | if ( '' !== $req_cred ) |
909 | return $req_cred; |
910 |
|
911 | if ( empty($type) ) |
912 | $type = get_filesystem_method(array(), $context); |
913 |
|
914 | if ( 'direct' == $type ) |
915 | return true; |
916 |
|