first commit

This commit is contained in:
2026-03-13 00:19:00 +01:00
commit ef9d615496
9537 changed files with 3137221 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
<?php
namespace Elementor\Data\Base\Processor;
use Elementor\Data\Base\Processor;
abstract class After extends Processor {
/**
* Get conditions for running processor.
*
* @param array $args
* @param mixed $result
*
* @return bool
*/
public function get_conditions( $args, $result ) {
return true;
}
/**
* Apply processor.
*
* @param $args
* @param $result
*
* @return mixed
*/
abstract public function apply( $args, $result );
}

View File

@@ -0,0 +1,27 @@
<?php
namespace Elementor\Data\Base\Processor;
use Elementor\Data\Base\Processor;
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 );
}