文件操作 - Event.php
返回文件管理
返回主菜单
删除本文件
文件: /home/www/public/wp-content/plugins/the-events-calendar/src/deprecated/Event.php
编辑文件内容
<?php _deprecated_class( 'Tribe__Events__Revisions__Event', '6.3.0' ); /** * Class Tribe__Events__Revisions__Event * * Handles the saving operations of an event revision. * * @since 4.2.5 * @since 6.3.0 * * @deprecated */ class Tribe__Events__Revisions__Event extends Tribe__Events__Revisions__Post { /** * @var Tribe__Events__Meta__Save */ protected $meta_save; /** * Tribe__Events__Revisions__Event constructor. * * @since 6.17.0 Made $meta_save explicitly nullable. * * @param Tribe__Events__Meta__Save|null $meta_save */ public function __construct( WP_Post $post, ?Tribe__Events__Meta__Save $meta_save = null ) { parent::__construct( $post ); $this->meta_save = $meta_save ? $meta_save : new Tribe__Events__Meta__Save( $this->post->ID, $this->post ); } /** * Saves the revision. */ public function save() { return $this->meta_save->save(); } }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件