# elementor/3.24.8/core/app/app.php

Elementor Website Builder – more than just a page builder, version 3.24.8. 21 lines.

- Page: https://pluginprobe.com/plugins/elementor/3.24.8/code/core/app/app.php
- Raw: https://pluginprobe.com/plugins/elementor/3.24.8/raw/core/app/app.php
- Modified: 2023-04-23T11:22:46+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/elementor/3.24.8/code/core/app/app.php#L10-L20`.

```php
<?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';
	}
}

```
