文件操作 - Classes.php
返回文件管理
返回主菜单
删除本文件
文件: /storage/v12552/stanleysteamer/public_html/wp-content/plugins/core-framework/wp/Config/Classes.php
编辑文件内容
<?php /** * CoreFramework * * @package CoreFramework * @author Core Framework <hello@coreframework.com> * @copyright 2023 Core Framework * @license EULA + GPLv2 * @link https://coreframework.com */ declare (strict_types = 1); namespace CoreFramework\Config; /** * This array is being used in ../Scaffold.php to instantiate the classes * * @package CoreFramework\Config * @since 0.0.0 */ final class Classes { /** * Init the classes inside these folders based on type of request. * * @see Requester for all the type of requests or to add your own */ public static function get(): array { return array( array( 'init' => 'Integrations' ), array( 'init' => 'App\\General' ), array( 'init' => 'App\\Frontend', 'on_request' => 'frontend', ), array( 'init' => 'App\\Backend', 'on_request' => 'backend', ), array( 'init' => 'App\\Rest', 'on_request' => 'rest', ), array( 'init' => 'App\\Oxygen', 'on_request' => 'oxygen', ), array( 'init' => 'App\\Bricks', 'on_request' => 'bricks', ), array( 'init' => 'App\\Gutenberg\\Gutenberg', 'on_request' => 'gutenberg', ), array( 'init' => 'Compatibility' ), ); } }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件