HEX
Server: Apache
System: Linux WWW 6.1.0-40-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.153-1 (2025-09-20) x86_64
User: web11 (1011)
PHP: 8.2.29
Disabled: NONE
Upload Files
File: /var/www/ippmt.kauko.lt/wp-content/plugins/elementor-pro/modules/link-actions/module.php
<?php

namespace ElementorPro\Modules\LinkActions;

use ElementorPro\Base\Module_Base;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly
}

class Module extends Module_Base {

	/**
	 * Get module name.
	 *
	 * Retrieve the module name.
	 *
	 * @since  2.3.0
	 * @access public
	 *
	 * @return string Module name.
	 */
	public function get_name() {
		return 'link-actions';
	}

	/**
	 * Create Action URL.
	 *
	 * @param string $action
	 * @param array  $settings Optional.
	 *
	 * @return string
	 */
	public static function create_action_url( $action, array $settings = [] ) {
		return '#' . rawurlencode( sprintf( 'elementor-action:action=%1$s settings=%2$s', $action, base64_encode( wp_json_encode( $settings ) ) ) );
	}
}