文件操作 - Positions.php
返回文件管理
返回主菜单
删除本文件
文件: /home/www/public/wp-content/plugins/tutor/components/Constants/Positions.php
编辑文件内容
<?php /** * Position constants for the components * * @package Tutor\Components * @author Themeum * @link https://themeum.com * @since 4.0.0 */ namespace Tutor\Components\Constants; defined( 'ABSPATH' ) || exit; /** * This class provides various position constants. * * @since 4.0.0 */ abstract class Positions { /** * Position Types * * @since 4.0.0 */ public const LEFT = 'left'; public const LEFT_TOP = 'left-top'; public const LEFT_BOTTOM = 'left-bottom'; public const RIGHT = 'right'; public const RIGHT_TOP = 'right-top'; public const RIGHT_BOTTOM = 'right-bottom'; public const TOP = 'top'; public const TOP_START = 'top-start'; public const TOP_END = 'top-end'; public const BOTTOM = 'bottom'; public const BOTTOM_START = 'bottom-start'; public const BOTTOM_END = 'bottom-end'; public const CENTER = 'center'; }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件