wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



request_filesystem_credentials › WordPress Filter Hooks

Da4.6.0
Deprecaton/a
apply_filters( 'request_filesystem_credentials', '', $form_post, $type, $error, $context, $extra_fields, $allow_relaxed_file_ownership )
Parametri: (7)
  • (mixed) $credentials Credentials to return instead. Default empty string.
    Richiesto:
  • (string) $form_post The URL to post the form to.
    Richiesto:
  • (string) $type Chosen type of filesystem.
    Richiesto:
  • (bool|WP_Error) $error Whether the current request has failed to connect, or an error object.
    Richiesto:
  • (string) $context Full path to the directory that is tested for being writable.
    Richiesto:
  • (array) $extra_fields Extra POST fields.
    Richiesto:
  • (bool) $allow_relaxed_file_ownership Whether to allow Group/World writable.
    Richiesto:
Definito a:
Codex:

Filters the filesystem credentials.

Returning anything other than an empty string will effectively short-circuit output of the filesystem credentials form, returning that value instead.

A filter should return true if no filesystem credentials are required, false if they are required but have not been provided, or an array of credentials if they are required and have been provided.





Sorgenti

$req_cred = apply_filters( 'request_filesystem_credentials', '', $form_post, $type, $error, $context, $extra_fields, $allow_relaxed_file_ownership );