/var/www/html_fr/wp-content/plugins/elementor/core/app/app.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php
namespace Elementor\Core\App;

use 
Elementor\Core\Base\App as BaseApp;

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

/**
 * This App class was introduced for backwards compatibility with 3rd parties.
 */
class App extends BaseApp {

    const 
PAGE_ID 'elementor-app';

    public function 
get_name() {
        return 
'app-bc';
    }
}