HEX
Server: Apache/2.4.41 (Ubuntu)
System: Linux wordpress-ubuntu-s-2vcpu-4gb-fra1-01 5.4.0-169-generic #187-Ubuntu SMP Thu Nov 23 14:52:28 UTC 2023 x86_64
User: root (0)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/delta/wp-content/plugins/sitepress-multilingual-cms/classes/roles/DefaultCapabilities.php
<?php

namespace WPML;

class DefaultCapabilities {

	/**
	 * We need the keys in a separate array to avoid triggering translate functions too early.
	 *
	 * @return string[]
	 */
	public static function getKeys() {
		return [
			'wpml_manage_translation_management',
			'wpml_manage_languages',
			'wpml_manage_theme_and_plugin_localization',
			'wpml_manage_support',
			'wpml_manage_woocommerce_multilingual',
			'wpml_operate_woocommerce_multilingual',
			'wpml_manage_media_translation',
			'wpml_manage_navigation',
			'wpml_manage_sticky_links',
			'wpml_manage_string_translation',
			'wpml_manage_translation_analytics',
			'wpml_manage_wp_menus_sync',
			'wpml_manage_taxonomy_translation',
			'wpml_manage_troubleshooting',
			'wpml_manage_translation_options',
		];
	}
	public static function get() {
		return [
			'wpml_manage_translation_management'        => __( 'Manage Translation Management', 'sitepress' ),
			'wpml_manage_languages'                     => __( 'Manage Languages', 'sitepress' ),
			'wpml_manage_theme_and_plugin_localization' => __( 'Manage Theme and Plugin localization', 'sitepress' ),
			'wpml_manage_support'                       => __( 'Manage Support', 'sitepress' ),
			'wpml_manage_woocommerce_multilingual'      => __( 'Manage WooCommerce Multilingual', 'sitepress' ),
			'wpml_operate_woocommerce_multilingual'     => __( 'Operate WooCommerce Multilingual. Everything on WCML except the settings tab.', 'sitepress' ),
			'wpml_manage_media_translation'             => __( 'Manage translation of media', 'sitepress' ),
			'wpml_manage_navigation'                    => __( 'Manage Navigation', 'sitepress' ),
			'wpml_manage_sticky_links'                  => __( 'Manage Sticky Links', 'sitepress' ),
			'wpml_manage_string_translation'            => __( 'Manage String Translation', 'sitepress' ),
			'wpml_manage_translation_analytics'         => __( 'Manage Translation Analytics', 'sitepress' ),
			'wpml_manage_wp_menus_sync'                 => __( 'Manage WPML Menus Sync', 'sitepress' ),
			'wpml_manage_taxonomy_translation'          => __( 'Manage Taxonomy Translation', 'sitepress' ),
			'wpml_manage_troubleshooting'               => __( 'Manage Troubleshooting', 'sitepress' ),
			'wpml_manage_translation_options'           => __( 'Translation options', 'sitepress' ),
		];
	}
}