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

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

- Page: https://pluginprobe.com/plugins/elementor/3.2.4/code/data/base/processor.php
- Raw: https://pluginprobe.com/plugins/elementor/3.2.4/raw/data/base/processor.php
- Modified: 2020-07-22T17:52:30+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.2.4/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();
}

```
