Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: request_filesystem_credentials

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
889  *
890  * @param string $form_post the URL to post the form to
891  * @param string $type the chosen Filesystem method in use
892  * @param boolean $error if the current request has failed to connect
893  * @param string $context The directory which is needed access to, The write-test will be performed on this directory by get_filesystem_method()
894  * @param string $extra_fields Extra POST fields which should be checked for to be included in the post.
895  * @return boolean False on failure. True on success.
896  */
897 function request_filesystem_credentials($form_post, $type = '', $error = false, $context = false, $extra_fields = null) {
898      $req_cred = apply_filters( 'request_filesystem_credentials', '', $form_post, $type, $error, $context, $extra_fields );
899      if ( '' !== $req_cred )
900           return $req_cred;
901
902      if ( empty($type) )
903           $type = get_filesystem_method(array(), $context);
904
905      if ( 'direct' == $type )
906           return true;
907