File "before.php"
Full Path: /home2/sdektunc/cepali.edu.mx/wp-content/plugins/elementor/data/base/processor/before.php
File size: 409 bytes
MIME-type: text/x-php
Charset: utf-8
<?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 );
}