/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-network.php (4163B)
blogid; } if ( $blog_id ) { switch_to_blog( $blog_id ); update_option( '_wpml_inactive', true ); restore_current_blog(); } wp_redirect( network_admin_url( 'admin.php?page=' . WPML_PLUGIN_FOLDER . '/menu/network.php&updated=true&action=deactivatewpml' ) ); } function icl_network_activate_wpml( $blog_id = false ) { global $wpdb; $filtered_action = filter_input( INPUT_POST, 'action', FILTER_SANITIZE_FULL_SPECIAL_CHARS, FILTER_NULL_ON_FAILURE ); $filtered_action = $filtered_action ? $filtered_action : filter_input( INPUT_GET, 'action', FILTER_SANITIZE_FULL_SPECIAL_CHARS, FILTER_NULL_ON_FAILURE ); if ( 0 === strcmp( $filtered_action, 'activatewpml' ) ) { if ( empty( $_REQUEST['_wpnonce'] ) || ! wp_verify_nonce( $_REQUEST['_wpnonce'], 'activatewpml' ) ) { return; } } if ( empty( $blog_id ) ) { $filtered_id = filter_input( INPUT_POST, 'id', FILTER_SANITIZE_FULL_SPECIAL_CHARS, FILTER_NULL_ON_FAILURE ); $filtered_id = $filtered_id ? $filtered_id : filter_input( INPUT_GET, 'id', FILTER_SANITIZE_FULL_SPECIAL_CHARS, FILTER_NULL_ON_FAILURE ); $blog_id = $filtered_id !== false ? $filtered_id : $wpdb->blogid; } if ( $blog_id ) { switch_to_blog( $blog_id ); delete_option( '_wpml_inactive' ); restore_current_blog(); } wp_redirect( network_admin_url( 'admin.php?page=' . WPML_PLUGIN_FOLDER . '/menu/network.php&updated=true&action=activatewpml' ) ); exit(); }