/
home
/
vianto5
/
cititower.mx
/
wp-content
/
plugins
/
sitepress-multilingual-cms
/
inc
/
/home/vianto5/cititower.mx/wp-content/plugins/sitepress-multilingual-cms/inc
mkdir
upload
Name
Size
Mode
Actions
absolute-links/
-
0755
rm
actions/
-
0755
rm
core/
-
0755
rm
hacks/
-
0755
rm
local-translation/
-
0755
rm
post-translation/
-
0755
rm
query-filtering/
-
0755
rm
setup/
-
0755
rm
taxonomy-term-translation/
-
0755
rm
tools/
-
0755
rm
translation-jobs/
-
0755
rm
translation-management/
-
0755
rm
translation-proxy/
-
0755
rm
upgrade-functions/
-
0755
rm
url-handling/
-
0755
rm
utilities/
-
0755
rm
wp-nav-menus/
-
0755
rm
wpml-config/
-
0755
rm
cache.php
4448
0644
edit
dl
rm
constants-tm.php
1366
0644
edit
dl
rm
constants.php
6695
0644
edit
dl
rm
deprecated-hooks.php
261
0644
edit
dl
rm
functions-debug-information.php
122
0644
edit
dl
rm
functions-helpers.php
1190
0644
edit
dl
rm
functions-load-tm.php
26044
0644
edit
dl
rm
functions-load.php
14242
0644
edit
dl
rm
functions-network.php
4163
0644
edit
dl
rm
functions-sanitation.php
1954
0644
edit
dl
rm
functions-security.php
2242
0644
edit
dl
rm
functions-troubleshooting.php
6971
0644
edit
dl
rm
functions.php
28121
0644
edit
dl
rm
hacks.php
982
0644
edit
dl
rm
icl-admin-notifier.php
29098
0644
edit
dl
rm
import-xml.php
1475
0644
edit
dl
rm
js-scripts.php
707
0644
edit
dl
rm
js-tm-scripts.php
3207
0644
edit
dl
rm
lang-data.php
9038
0644
edit
dl
rm
language-switcher.php
2416
0644
edit
dl
rm
not-compatible-plugins.php
2049
0644
edit
dl
rm
plugin-integration-nextgen.php
1854
0644
edit
dl
rm
plugins-integration.php
2070
0644
edit
dl
rm
template-functions.php
48587
0644
edit
dl
rm
upgrade.php
10337
0644
edit
dl
rm
wpml-api.php
19748
0644
edit
dl
rm
wpml-post-comments.class.php
6487
0644
edit
dl
rm
wpml-post-edit-ajax.class.php
13370
0644
edit
dl
rm
wpml-private-actions-tm.php
3572
0644
edit
dl
rm
wpml-private-actions.php
4482
0644
edit
dl
rm
wpml-private-filters.php
1049
0644
edit
dl
rm
wpml_load_request_handler.php
1547
0644
edit
dl
rm
wpml_zip.php
23598
0644
edit
dl
rm
Edit:
/home/vianto5/cititower.mx/wp-content/plugins/sitepress-multilingual-cms/inc/functions-security.php
(2242B)
<?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 ); }
Save
cmd:
run