golden hour
/home/godaofbq/hyperxmed.com/wp-content/plugins/elementskit/modules/masking
⬆️ Go Up
Upload
File/Folder
Size
Actions
assets
-
Del
OK
extend-controls.php
11.37 KB
Del
OK
init.php
560 B
Del
OK
Edit: init.php
<?php namespace ElementsKit\Modules\Masking; defined( 'ABSPATH' ) || exit; class Init { private $dir; private $url; public function __construct(){ // get current directory path $this->dir = dirname(__FILE__) . '/'; // get current module's url $this->url = \ElementsKit::plugin_url() . 'modules/masking/'; // // include all necessary files $this->include_files(); // // calling the sticky controls new \Elementor\ElementsKit_Extend_Masking(); } public function include_files() { include $this->dir . 'extend-controls.php'; } }
Save