/home/vianto5/cititower.mx/wp-content/plugins/sitepress-multilingual-cms/inc
NameSizeModeActions
absolute-links/-0755rm
actions/-0755rm
core/-0755rm
hacks/-0755rm
local-translation/-0755rm
post-translation/-0755rm
query-filtering/-0755rm
setup/-0755rm
taxonomy-term-translation/-0755rm
tools/-0755rm
translation-jobs/-0755rm
translation-management/-0755rm
translation-proxy/-0755rm
upgrade-functions/-0755rm
url-handling/-0755rm
utilities/-0755rm
wp-nav-menus/-0755rm
wpml-config/-0755rm
cache.php44480644editdlrm
constants-tm.php13660644editdlrm
constants.php66950644editdlrm
deprecated-hooks.php2610644editdlrm
functions-debug-information.php1220644editdlrm
functions-helpers.php11900644editdlrm
functions-load-tm.php260440644editdlrm
functions-load.php142420644editdlrm
functions-network.php41630644editdlrm
functions-sanitation.php19540644editdlrm
functions-security.php22420644editdlrm
functions-troubleshooting.php69710644editdlrm
functions.php281210644editdlrm
hacks.php9820644editdlrm
icl-admin-notifier.php290980644editdlrm
import-xml.php14750644editdlrm
js-scripts.php7070644editdlrm
js-tm-scripts.php32070644editdlrm
lang-data.php90380644editdlrm
language-switcher.php24160644editdlrm
not-compatible-plugins.php20490644editdlrm
plugin-integration-nextgen.php18540644editdlrm
plugins-integration.php20700644editdlrm
template-functions.php485870644editdlrm
upgrade.php103370644editdlrm
wpml-api.php197480644editdlrm
wpml-post-comments.class.php64870644editdlrm
wpml-post-edit-ajax.class.php133700644editdlrm
wpml-private-actions-tm.php35720644editdlrm
wpml-private-actions.php44820644editdlrm
wpml-private-filters.php10490644editdlrm
wpml_load_request_handler.php15470644editdlrm
wpml_zip.php235980644editdlrm
Edit: /home/vianto5/cititower.mx/wp-content/plugins/sitepress-multilingual-cms/inc/functions-security.php (2242B)
'; } /** * 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 ); }