文件操作 - Event_Organizer.php
返回文件管理
返回主菜单
删除本文件
文件: /home/www/public/wp-content/plugins/the-events-calendar/src/Tribe/Editor/Blocks/Event_Organizer.php
编辑文件内容
<?php class Tribe__Events__Editor__Blocks__Event_Organizer extends Tribe__Editor__Blocks__Abstract { use TEC\Events\Traits\Block_Trait; /** * Which is the name/slug of this block * * @since 4.7 * * @return string */ public function slug() { return 'event-organizer'; } /** * Since we are dealing with a Dynamic type of Block we need a PHP method to render it * * @since 4.7 * * @param array $attributes * * @return string */ public function render( $attributes = [] ) { $args['attributes'] = $this->attributes( $attributes ); // Add the rendering attributes into global context tribe( 'events.editor.template' )->add_template_globals( $args ); return tribe( 'events.editor.template' )->template( [ 'blocks', $this->slug() ], $args, false ); } }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件