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

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

- Page: https://pluginprobe.com/plugins/elementor/3.6.8/code/core/logger/items/php.php
- Raw: https://pluginprobe.com/plugins/elementor/3.6.8/raw/core/logger/items/php.php
- Modified: 2019-01-06T13:05: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.6.8/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';
	}
}

```
