# elementor/4.2.3/data/v2/base/processor/before.php

Elementor Website Builder – more than just a page builder, version 4.2.3. 32 lines.

- Page: https://pluginprobe.com/plugins/elementor/4.2.3/code/data/v2/base/processor/before.php
- Raw: https://pluginprobe.com/plugins/elementor/4.2.3/raw/data/v2/base/processor/before.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.2.3/code/data/v2/base/processor/before.php#L10-L20`.

```php
<?php
namespace Elementor\Data\V2\Base\Processor;

use Elementor\Data\V2\Base\Processor;

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

abstract class Before extends Processor {

	/**
	 * Get conditions for running processor.
	 *
	 * @param array $args
	 *
	 * @return bool
	 */
	public function get_conditions( $args ) {
		return true;
	}

	/**
	 * Apply processor.
	 *
	 * @param array $args
	 *
	 * @return mixed
	 */
	abstract public function apply( $args );
}

```
