| 1 |
<?php |
| 2 |
namespace Elementor\Core\App; |
| 3 |
|
| 4 |
use Elementor\Core\Base\App as BaseApp; |
| 5 |
|
| 6 |
if ( ! defined( 'ABSPATH' ) ) { |
| 7 |
exit; // Exit if accessed directly. |
| 8 |
} |
| 9 |
|
| 10 |
/** |
| 11 |
* This App class was introduced for backwards compatibility with 3rd parties. |
| 12 |
*/ |
| 13 |
class App extends BaseApp { |
| 14 |
|
| 15 |
const PAGE_ID = 'elementor-app'; |
| 16 |
|
| 17 |
public function get_name() { |
| 18 |
return 'app-bc'; |
| 19 |
} |
| 20 |
} |
| 21 |
|