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
1008       * @param string $form_post    URL to POST the form to.
1009       * @param string $type         Chosen type of filesystem.
1010       * @param bool   $error        Whether the current request has failed to connect.
1011       *                             Default false.
1012       * @param string $context      Full path to the directory that is tested for
1013       *                             being writable.
1014       * @param bool $allow_relaxed_file_ownership Whether to allow Group/World writable.
1015       * @param array  $extra_fields Extra POST fields.
1016       */
1017      $req_cred = apply_filters( 'request_filesystem_credentials', '', $form_post, $type, $error, $context, $extra_fields, $allow_relaxed_file_ownership );
1018      if ( '' !== $req_cred )
1019           return $req_cred;
1020
1021      if ( empty($type) ) {
1022           $type = get_filesystem_method( array(), $context, $allow_relaxed_file_ownership );
1023      }
1024
1025      if ( 'direct' == $type )
1026           return true;