文件操作 - Provider.php
返回文件管理
返回主菜单
删除本文件
文件: /home/www/public/wp-content/plugins/the-events-calendar/src/Events/Integrations/Provider.php
编辑文件内容
<?php /** * Handles The Events Calendar integration. * * @since 6.0.4 * * @package TEC\Events\Integrations */ namespace TEC\Events\Integrations; use TEC\Common\Contracts\Service_Provider; /** * Class Provider * * @since 6.0.4 * @since 6.15.8 Added Avada Provider. * * @package TEC\Events\Integrations */ class Provider extends Service_Provider { /** * Binds and sets up implementations. * * @since 6.0.4 */ public function register() { $this->container->singleton( static::class, $this ); $this->container->register( Plugins\WordPress_SEO\Provider::class ); $this->container->register( Plugins\Rank_Math\Provider::class ); $this->container->register( Plugins\Colbri_Page_Builder\Provider::class ); $this->container->register( Plugins\Event_Tickets\Provider::class ); $this->container->register( Plugins\Elementor\Controller::class ); $this->container->register( Themes\Avada\Provider::class ); $this->container->register_on_action( 'tribe_plugins_loaded', Plugins\TEC_Tweaks_Extension\Provider::class ); $this->container->register_on_action( 'tec_container_registered_provider_TEC\Tickets_Wallet_Plus\Controller', Plugins\Tickets_Wallet_Plus\Controller::class ); } }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件