wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
validate_file_to_edit › WordPress Function
Seit1.5.0
Veraltetn/v
› validate_file_to_edit ( $file, $allowed_files = array() )
Parameter: (2) |
|
Gibt zurück: |
|
Definiert in: |
|
Codex: |
Makes sure that the file that was requested to be edited is allowed to be edited.
Function will die if you are not allowed to edit the file.Ähnliche Funktionen: validate_file, get_real_file_to_edit, load_image_to_edit, validate_email, wp_validate_redirect
Quellcode
function validate_file_to_edit( $file, $allowed_files = array() ) { $code = validate_file( $file, $allowed_files ); if ( ! $code ) { return $file; } switch ( $code ) { case 1: wp_die( __( 'Sorry, that file cannot be edited.' ) ); // case 2 : // wp_die( __('Sorry, cannot call files with their real path.' )); case 3: wp_die( __( 'Sorry, that file cannot be edited.' ) ); } }