PATH:
var
/
www
/
clients
/
client1
/
web1
/
web
/
wp-content
/
sitepress-multilingual-cms
/
inc
<?php function wpml_get_authenticated_action() { $action = filter_input( INPUT_POST, 'icl_ajx_action' ); $action = $action ? $action : filter_input( INPUT_POST, 'action' ); $nonce = $action ? filter_input( INPUT_POST, '_icl_nonce' ) : null; if ( $nonce === null || $action === null ) { $action = filter_input( INPUT_GET, 'icl_ajx_action' ); $nonce = $action ? filter_input( INPUT_GET, '_icl_nonce' ) : null; } $authenticated_action = $action && wp_verify_nonce( (string) $nonce, $action . '_nonce' ) ? $action : null; return $authenticated_action; } /** * Validates a nonce according to the schema also used by \wpml_nonce_field * * @param string $action * * @return false|int */ function wpml_is_action_authenticated( $action ) { $nonce = isset( $_POST['_icl_nonce'] ) ? $_POST['_icl_nonce'] : ''; if ( '' !== $nonce ) { $action = $action . '_nonce'; } else { $nonce = isset( $_POST['nonce'] ) ? $_POST['nonce'] : ''; } return wp_verify_nonce( $nonce, $action ); } /** * Generates HTML for the hidden nonce input field following the schema * used by \wpml_is_action_authenticated * * @param string $action * * @return string */ function wpml_nonce_field( $action ) { return '<input name="_icl_nonce" type="hidden" value="' . wp_create_nonce( $action . '_nonce' ) . '"/>'; } /** * RFC 4122 compliant UUID version 5. * * @param string $name The name to generate the UUID from. * @param string $ns_uuid Namespace UUID. Default is for the NS when name string is a URL. * * @return string The UUID string. */ if ( ! function_exists( 'uuid_v5' ) ) { function uuid_v5( $name, $ns_uuid = '6ba7b811-9dad-11d1-80b4-00c04fd430c8' ) { $wpml_uuid = new WPML_UUID(); return $wpml_uuid->get_uuid_v5( $name, $ns_uuid ); } } /** * @param string $object_id * @param string $object_type * @param int|null $timestamp If this parameter is `null`, it will be assigned the current time * Set this parameter to 0 if the uuid should not have a time footprint * * @return string */ function wpml_uuid( $object_id, $object_type, $timestamp = null ) { $wpml_uuid = new WPML_UUID(); return $wpml_uuid->get( $object_id, $object_type, $timestamp ); }
[-] constants.php
[edit]
[-] functions-helpers.php
[edit]
[-] functions-load.php
[edit]
[-] plugins-integration.php
[edit]
[-] functions-sanitation.php
[edit]
[-] lang-data.php
[edit]
[-] template-functions.php
[edit]
[-] import-xml.php
[edit]
[+]
utilities
[+]
absolute-links
[-] ajax.php
[edit]
[-] wpml-post-edit-ajax.class.php
[edit]
[-] functions-troubleshooting.php
[edit]
[-] hacks.php
[edit]
[-] functions-network.php
[edit]
[-] functions-security.php
[edit]
[-] cache.php
[edit]
[+]
tools
[-] wpml-private-actions.php
[edit]
[-] functions.php
[edit]
[+]
translation-jobs
[+]
hacks
[+]
wpml-config
[-] wpml-api.php
[edit]
[+]
local-translation
[-] wpml-private-filters.php
[edit]
[+]
translation-proxy
[-] wpml-private-actions-tm.php
[edit]
[+]
taxonomy-term-translation
[+]
setup
[-] wpml_zip.php
[edit]
[-] language-switcher.php
[edit]
[-] wpml-post-comments.class.php
[edit]
[+]
url-handling
[-] functions-load-tm.php
[edit]
[-] plugin-integration-nextgen.php
[edit]
[-] js-scripts.php
[edit]
[+]
query-filtering
[-] constants-tm.php
[edit]
[+]
translation-management
[-] js-tm-scripts.php
[edit]
[-] upgrade.php
[edit]
[+]
upgrade-functions
[+]
..
[-] icl-admin-notifier.php
[edit]
[-] not-compatible-plugins.php
[edit]
[-] deprecated-hooks.php
[edit]
[+]
actions
[-] functions-debug-information.php
[edit]
[+]
core
[+]
wp-nav-menus
[+]
post-translation
[-] wpml_load_request_handler.php
[edit]