文件操作 - Backend.php
返回文件管理
返回主菜单
删除本文件
文件: /home/www/public/wp-content/plugins/tutor/includes/droip/backend/Backend.php
编辑文件内容
<?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(); } }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件