文件操作 - Plan.php
返回文件管理
返回主菜单
删除本文件
文件: /storage/v12552/redlightmusclerec/public_html/wp-content/plugins/templately/includes/Utils/Plan.php
编辑文件内容
<?php namespace Templately\Utils; class Plan extends Base { const ALL = 1; const STARTER = 2; const PRO = 3; /** * Get the plan ID. * * @since 2.0.0 * @param string $plan * * @return int */ public static function get( $plan = 'all' ) { $plan = strtoupper( $plan ); return $plan === 'STARTER' ? self::STARTER : ( $plan === 'PRO' ? self::PRO : self::ALL ); } }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件