芝麻web文件管理V1.00
编辑当前文件:/home/dcqnetm/intuns/wp-content/plugins/polylang/admin/admin-filters.php
model->get_languages_list() as $lang ) { $meta = $lang->is_default ? 'description' : 'description_' . $lang->slug; $description = empty( $_POST[ 'description_' . $lang->slug ] ) ? '' : trim( $_POST[ 'description_' . $lang->slug ] ); // phpcs:ignore WordPress.Security.NonceVerification, WordPress.Security.ValidatedSanitizedInput /** This filter is documented in wp-includes/user.php */ $description = apply_filters( 'pre_user_description', $description ); // Applies WP default filter wp_filter_kses update_user_meta( $user_id, $meta, $description ); } } /** * Outputs hidden information to modify the biography form with js. * * @since 0.4 * * @param WP_User $profileuser The current WP_User object. * @return void */ public function personal_options( $profileuser ) { foreach ( $this->model->get_languages_list() as $lang ) { $meta = $lang->is_default ? 'description' : 'description_' . $lang->slug; $description = get_user_meta( $profileuser->ID, $meta, true ); printf( '
', esc_attr( $lang->slug ), esc_attr( $lang->name ), sanitize_user_field( 'description', $description, $profileuser->ID, 'edit' ) ); } } /** * Allows to update translations files for plugins and themes. * * @since 1.6 * * @param string[] $locales List of locales to update for plugins and themes. * @return string[] */ public function update_check_locales( $locales ) { return array_merge( $locales, $this->model->get_languages_list( array( 'fields' => 'locale' ) ) ); } /** * Adds custom classes to the body * * @since 2.2 Adds a text direction dependent class to the body. * @since 3.4 Adds a language dependent class to the body. * * @param string $classes Space-separated list of CSS classes. * @return string */ public function admin_body_class( $classes ) { if ( ! empty( $this->curlang ) ) { $classes .= ' pll-dir-' . ( $this->curlang->is_rtl ? 'rtl' : 'ltr' ); $classes .= ' pll-lang-' . $this->curlang->slug; } return $classes; } /** * Adds post state for translations of the privacy policy page. * * @since 2.7 * * @param string[] $post_states An array of post display states. * @param WP_Post $post The current post object. * @return string[] */ public function display_post_states( $post_states, $post ) { $page_for_privacy_policy = get_option( 'wp_page_for_privacy_policy' ); if ( $page_for_privacy_policy && in_array( $post->ID, $this->model->post->get_translations( $page_for_privacy_policy ) ) ) { $post_states['page_for_privacy_policy'] = __( 'Privacy Policy Page', 'polylang' ); } return $post_states; } }