Done !
| Server IP : 46.105.57.169 / Your IP : 216.73.217.35 Web Server : Apache System : Linux webm002.cluster120.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : verseaumee ( 152031) PHP Version : 8.5.7 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/verseaumee/123click/assets/ |
Upload File : |
admin-pointer.php 0000644 00000003652 15100245535 0010031 0 ustar 00 <?php
namespace Elementor\Modules\Apps;
use Elementor\Core\Upgrade\Manager as Upgrade_Manager;
use Elementor\User;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
class Admin_Pointer {
const RELEASE_VERSION = '3.15.0';
const CURRENT_POINTER_SLUG = 'e-apps';
public static function add_hooks() {
add_action( 'admin_print_footer_scripts-index.php', [ __CLASS__, 'admin_print_script' ] );
}
public static function admin_print_script() {
if ( static::is_dismissed() || static::is_new_installation() ) {
return;
}
wp_enqueue_script( 'wp-pointer' );
wp_enqueue_style( 'wp-pointer' );
$pointer_content = '<h3>' . esc_html__( 'New! Popular Apps', 'elementor' ) . '</h3>';
$pointer_content .= '<p>' . esc_html__( 'Discover our collection of plugins and add-ons carefully selected to enhance your Elementor website and unleash your creativity.', 'elementor' ) . '</p>';
$pointer_content .= sprintf(
'<p><a class="button button-primary" href="%s">%s</a></p>',
admin_url( 'admin.php?page=' . Module::PAGE_ID ),
esc_html__( 'Explore Apps', 'elementor' )
)
?>
<script>
jQuery( document ).ready( function( $ ) {
$( '#toplevel_page_elementor' ).pointer( {
content: '<?php echo $pointer_content; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>',
position: {
edge: <?php echo is_rtl() ? "'right'" : "'left'"; ?>,
align: 'center'
},
close: function() {
elementorCommon.ajax.addRequest( 'introduction_viewed', {
data: {
introductionKey: '<?php echo esc_attr( static::CURRENT_POINTER_SLUG ); ?>',
},
} );
}
} ).pointer( 'open' );
} );
</script>
<?php
}
private static function is_dismissed() {
return User::get_introduction_meta( static::CURRENT_POINTER_SLUG );
}
private static function is_new_installation() {
return Upgrade_Manager::install_compare( static::RELEASE_VERSION, '>=' );
}
}
module.php 0000644 00000003173 15100245535 0006546 0 ustar 00 <?php
namespace Elementor\Modules\Apps;
use Elementor\Core\Admin\Menu\Admin_Menu_Manager;
use Elementor\Core\Base\Module as BaseModule;
use Elementor\Settings;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
class Module extends BaseModule {
const PAGE_ID = 'elementor-apps';
public function get_name() {
return 'apps';
}
public function __construct() {
parent::__construct();
Admin_Pointer::add_hooks();
add_action( 'elementor/admin/menu/register', function( Admin_Menu_Manager $admin_menu ) {
$admin_menu->register( static::PAGE_ID, new Admin_Menu_Apps() );
}, 115 );
add_action( 'elementor/admin/menu/after_register', function ( Admin_Menu_Manager $admin_menu, array $hooks ) {
if ( ! empty( $hooks[ static::PAGE_ID ] ) ) {
add_action( "admin_print_scripts-{$hooks[ static::PAGE_ID ]}", [ $this, 'enqueue_assets' ] );
}
}, 10, 2 );
add_filter( 'elementor/finder/categories', function( array $categories ) {
$categories['site']['items']['apps'] = [
'title' => esc_html__( 'Apps', 'elementor' ),
'url' => admin_url( 'admin.php?page=' . static::PAGE_ID ),
'icon' => 'apps',
'keywords' => [ 'apps', 'addon', 'plugin', 'extension', 'integration' ],
];
return $categories;
} );
}
public function enqueue_assets() {
add_filter( 'admin_body_class', [ $this, 'body_status_classes' ] );
wp_enqueue_style(
'elementor-apps',
$this->get_css_assets_url( 'modules/apps/admin' ),
[],
ELEMENTOR_VERSION
);
}
public function body_status_classes( $admin_body_classes ) {
$admin_body_classes .= ' elementor-apps-page';
return $admin_body_classes;
}
}
images/hover.svg 0000644 00000002554 15100245535 0007663 0 ustar 00 <svg width="800px" height="800px" viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg">
<circle cx="512" cy="512" r="512" style="fill:#229e87"/>
<path d="M307.87 456.11c-14.54 0-26.48 4.15-32.71 13V412.5h-33.24v151.6h33.75v-56.59c0-13.5 7.79-20.77 21.29-20.77 11.94 0 17.65 6.75 17.65 18.7v58.66h33.23v-60.75c0-30.11-16.61-47.24-39.97-47.24zm109 0c-32.71 0-58.15 22.85-58.15 55.56 0 32.19 25.44 55 58.15 55s58.15-22.84 58.15-55-25.41-55.56-58.12-55.56zm0 82c-15.06 0-23.89-10.91-23.89-26.48 0-16.1 9.35-26.48 23.89-26.48 15.05 0 23.88 10.91 23.88 26.48s-8.75 26.51-23.85 26.51zm189.51-79.44h-28c-11.42 0-25.44 6.75-32.19 23.37l-4.19 7.82c-4.67 10.91-8.31 18.17-8.31 18.17l-1 4.67-1.57-4.7s-3.63-7.78-8.3-18.17l-3.64-8.31c-6.75-16.62-21.29-23.37-32.19-23.37H459s11.42 3.12 23.37 23.37c11.89 19.76 44.63 84.67 44.63 84.67h11.95s32.71-64.9 44.65-84.63c11.42-19.73 22.84-22.84 22.84-22.84zm43.62-2.55c-32.71 0-58.15 22.84-58.15 55 0 32.71 24.41 55.55 62.31 55.55 22.33 0 34.79-6.75 45.17-15.57l-19.21-20.77a46.87 46.87 0 0 1-26.48 8.31c-15.05 0-23.88-6.23-27.52-17.14h80.48c1.56-36.86-18.69-65.42-56.59-65.42zm-23.88 45.17c2.59-12.46 11.42-18.69 24.92-18.69 13 0 20.77 6.75 22.33 18.69zm156.28-45.17c-10.91 0-23.37 3.63-29.6 15.05v-13h-33.72v105.4h33.75v-46.71c0-22.33 8.31-29.6 23.37-29.6a28.14 28.14 0 0 1 13 3.12l10.91-30.63a50 50 0 0 0-17.65-3.63z" style="fill:#fff"/>
</svg>
images/profile-builder.svg 0000644 00000007164 15100245535 0011626 0 ustar 00 <svg width="124" height="124" fill="none" xmlns="http://www.w3.org/2000/svg"><g filter="url(#a)"><path fill-rule="evenodd" clip-rule="evenodd" d="M49.6 20.321c0 11.223-7.167 16.879-18.606 16.879-11.44 0-18.594-5.656-18.594-16.879C12.4 9.098 19.554 0 30.994 0 42.434 0 49.6 9.098 49.6 20.321zM30.994 31.078c6.055 0 10.964-4.816 10.964-10.757 0-5.94-4.909-10.757-10.964-10.757-6.055 0-10.964 4.816-10.964 10.757 0 5.94 4.909 10.757 10.964 10.757z" fill="url(#b)"/><path fill-rule="evenodd" clip-rule="evenodd" d="M111.6 20.321c0 11.223-7.155 16.879-18.594 16.879-11.44 0-18.606-5.656-18.606-16.879C74.4 9.098 81.566 0 93.006 0 104.445 0 111.6 9.098 111.6 20.321zM93.006 31.078c6.055 0 10.964-4.816 10.964-10.757 0-5.94-4.909-10.757-10.964-10.757-6.055 0-10.964 4.816-10.964 10.757 0 5.94 4.909 10.757 10.964 10.757z" fill="url(#c)"/><path d="M40.532 46.278c-6.194-2.576-12.86-2.58-19.056-.01-6.195 2.568-11.604 7.578-15.458 14.32C2.163 67.328.058 75.458 0 83.824c-.057 8.366 1.938 16.542 5.7 23.368 3.763 6.827 9.102 11.958 15.262 14.665 6.159 2.707 12.825 2.853 19.053.417 6.227-2.436 11.7-7.33 15.641-13.988.125-.211.238-.429.339-.653l.012.01 19.878-39.588-.016-.014.01-.016c2.64-4.624 6.344-8.062 10.59-9.827 4.245-1.765 8.814-1.768 13.06-.007 4.247 1.76 7.954 5.195 10.596 9.815 2.643 4.621 4.085 10.194 4.124 15.927.039 5.734-1.328 11.339-3.907 16.018-2.579 4.679-6.239 8.196-10.46 10.052-4.222 1.855-8.791 1.955-13.06.286-4.269-1.67-8.02-5.025-10.721-9.588-1.63-2.754-4.688-3.288-6.83-1.193-2.143 2.094-2.559 6.025-.929 8.778 3.941 6.658 9.414 11.552 15.641 13.988 6.228 2.436 12.894 2.29 19.053-.417 6.16-2.707 11.499-7.838 15.262-14.665 3.762-6.826 5.757-15.002 5.7-23.368-.057-8.365-2.162-16.495-6.017-23.236-3.854-6.742-9.263-11.752-15.458-14.32-6.195-2.57-12.862-2.566-19.056.01-6.193 2.575-11.599 7.591-15.449 14.336-.12.21-.228.426-.324.647l-19.842 39.515c-2.698 4.525-6.431 7.852-10.676 9.513-4.269 1.669-8.838 1.569-13.06-.286-4.222-1.856-7.881-5.373-10.46-10.052-2.58-4.68-3.946-10.283-3.907-16.017.039-5.734 1.481-11.307 4.123-15.928 2.643-4.62 6.35-8.055 10.596-9.815 4.247-1.76 8.816-1.758 13.062.007 4.245 1.765 7.95 5.203 10.589 9.827 1.592 2.79 4.643 3.392 6.814 1.346 2.17-2.047 2.639-5.967 1.047-8.757-3.85-6.745-9.256-11.761-15.45-14.336z" fill="url(#d)"/></g><defs><linearGradient id="b" x1="0" y1="59.52" x2="124" y2="58.28" gradientUnits="userSpaceOnUse"><stop stop-color="#F7AA0F"/><stop offset=".38" stop-color="#F7AA10"/><stop offset=".646" stop-color="#1116B0"/><stop offset="1" stop-color="#0F15B0"/></linearGradient><linearGradient id="c" x1="0" y1="59.52" x2="124" y2="58.28" gradientUnits="userSpaceOnUse"><stop stop-color="#F7AA0F"/><stop offset=".38" stop-color="#F7AA10"/><stop offset=".646" stop-color="#1116B0"/><stop offset="1" stop-color="#0F15B0"/></linearGradient><linearGradient id="d" x1="0" y1="59.52" x2="124" y2="58.28" gradientUnits="userSpaceOnUse"><stop stop-color="#F7AA0F"/><stop offset=".38" stop-color="#F7AA10"/><stop offset=".646" stop-color="#1116B0"/><stop offset="1" stop-color="#0F15B0"/></linearGradient><filter id="a" x="0" y="0" width="126.2" height="126.2" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feColorMatrix in="SourceAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/><feOffset dx="2.2" dy="2.2"/><feGaussianBlur stdDeviation="1.305"/><feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.16 0"/><feBlend in2="shape" result="effect1_innerShadow_3251_49931"/></filter></defs></svg>