文件操作 - SubscriptionQuery.php
返回文件管理
返回主菜单
删除本文件
文件: /home/www/public/wp-content/plugins/give/src/DonationForms/SubscriptionQuery.php
编辑文件内容
<?php namespace Give\DonationForms; use Give\Framework\QueryBuilder\QueryBuilder; /** * @since 3.12.0 */ class SubscriptionQuery extends QueryBuilder { /** * @since 3.12.0 */ public function __construct() { $this->from('give_subscriptions'); } /** * @since 3.12.0 */ public function form($formId) { $this->where('product_id', $formId); return $this; } /** * @since 3.12.0 */ public function forms(array $formIds) { $this->whereIn('product_id', $formIds); return $this; } /** * @since 3.12.0 */ public function between($startDate, $endDate) { $this->whereBetween( 'created', date('Y-m-d H:i:s', strtotime($startDate)), date('Y-m-d H:i:s', strtotime($endDate)) ); return $this; } /** * @since 3.12.0 */ public function sumInitialAmount() { return $this->sum('initial_amount'); } /** * @since 3.12.0 */ public function countDonors() { return $this->count('DISTINCT customer_id'); } }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件