first commit

This commit is contained in:
2024-07-31 13:12:38 +07:00
commit b4e8cbe182
10213 changed files with 3125839 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
<?php
namespace Elementor\Modules\NestedElements\Controls;
use Elementor\Control_Repeater;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
/**
* Changing the default repeater control behavior for custom item title defaults.
* For custom management of nested repeater controls.
*/
class Control_Nested_Repeater extends Control_Repeater {
const CONTROL_TYPE = 'nested-elements-repeater';
public function get_type() {
return static::CONTROL_TYPE;
}
}