文件操作 - CampaignGoalType.php
返回文件管理
返回主菜单
删除本文件
文件: /home/www/public/wp-content/plugins/give/src/Campaigns/ValueObjects/CampaignGoalType.php
编辑文件内容
<?php namespace Give\Campaigns\ValueObjects; use Give\Framework\Support\ValueObjects\Enum; /** * @since 4.0.0 * * @method static CampaignGoalType AMOUNT() * @method static CampaignGoalType DONATIONS() * @method static CampaignGoalType DONORS() * @method static CampaignGoalType AMOUNT_FROM_SUBSCRIPTIONS() * @method static CampaignGoalType SUBSCRIPTIONS() * @method static CampaignGoalType DONORS_FROM_SUBSCRIPTIONS() * @method bool isAmount() * @method bool isDonations() * @method bool isDonors() * @method bool isAmountFromSubscriptions() * @method bool isSubscriptions() * @method bool isDonorsFromSubscriptions() */ class CampaignGoalType extends Enum { const AMOUNT = 'amount'; const DONATIONS = 'donations'; const DONORS = 'donors'; const AMOUNT_FROM_SUBSCRIPTIONS = 'amountFromSubscriptions'; const SUBSCRIPTIONS = 'subscriptions'; const DONORS_FROM_SUBSCRIPTIONS = 'donorsFromSubscriptions'; }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件