# elementor/4.1.5/core/logger/items/php.php

Elementor Website Builder – more than just a page builder, version 4.1.5. 16 lines.

- Page: https://pluginprobe.com/plugins/elementor/4.1.5/code/core/logger/items/php.php
- Raw: https://pluginprobe.com/plugins/elementor/4.1.5/raw/core/logger/items/php.php
- Modified: 2025-03-17T13:28:54+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/4.1.5/code/core/logger/items/php.php#L10-L20`.

```php
<?php
namespace Elementor\Core\Logger\Items;

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

class PHP extends File {

	const FORMAT = 'PHP: date [type X times][file::line] message [meta]';

	public function get_name() {
		return 'PHP';
	}
}

```
