at path:
ROOT
/
wp-content
/
plugins
/
tutor
/
includes
/
droip
/
backend
/
Backend.php
run:
R
W
Run
ElementGenerator
DIR
2026-04-14 05:34:27
R
W
Run
Ajax.php
5.03 KB
2026-04-14 05:34:27
R
W
Run
Delete
Rename
Backend.php
746 By
2026-04-14 05:34:27
R
W
Run
Delete
Rename
Editor.php
894 By
2026-04-14 05:34:27
R
W
Run
Delete
Rename
Frontend.php
321 By
2026-04-14 05:34:27
R
W
Run
Delete
Rename
Helper.php
863 By
2026-04-14 05:34:27
R
W
Run
Delete
Rename
Hooks.php
40.91 KB
2026-04-14 05:34:27
R
W
Run
Delete
Rename
Iframe.php
1.37 KB
2026-04-14 05:34:27
R
W
Run
Delete
Rename
Pages.php
8.23 KB
2026-04-14 05:34:27
R
W
Run
Delete
Rename
VisibilityCondition.php
28.88 KB
2026-04-14 05:34:27
R
W
Run
Delete
Rename
error_log
up
📄
Backend.php
Save
<?php /** * Preview script for html markup generator * * @package tutor-droip-elements */ namespace TutorLMSDroip; use TutorLMSDroip\ElementGenerator\ElementGenerator; use TUTOR\Input; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } /** * Class Backend * * @package TutorLMSDroip */ class Backend { /** * Backend constructor. */ public function __construct() { $this->run(); } /** * Run the backend */ public function run() { $action = Input::get( 'action' ); if ( 'droip' === $action ) { $load_for = Input::get( 'load_for' ); if ( 'droip-iframe' === $load_for ) { new Iframe(); } else { new Editor(); } } new ElementGenerator(); new Pages(); new Hooks(); } }