# elementor/4.0.9/data/base/processor.php

Elementor Website Builder – more than just a page builder, version 4.0.9. 29 lines.

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

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

abstract class Processor {

	/**
	 * Controller.
	 *
	 * @var \Elementor\Data\Base\Controller
	 */
	private $controller;

	/**
	 * Processor constructor.
	 *
	 * @param \Elementor\Data\Base\Controller $controller
	 */
	public function __construct( $controller ) {
		$this->controller = $controller;
	}

	/**
	 * Get processor command.
	 *
	 * @return string
	 */
	abstract public function get_command();
}

```
