文件操作 - DonationFormElements.php
返回文件管理
返回主菜单
删除本文件
文件: /home/www/public/wp-content/plugins/give/src/PaymentGateways/Stripe/DonationFormElements.php
编辑文件内容
<?php namespace Give\PaymentGateways\Stripe; /** * Class DonationFormElements * @package Give\PaymentGateways\Stripe * * We use this class to output HTML fields on donation form. * * @since 2.9.2 */ class DonationFormElements { /** * Add html tags to form . * * @since 2.9.2 * * @param array $htmlTags Array of form html tags * * @return array */ public function addFormHtmlTags($htmlTags) { if (give_is_gateway_active('stripe_checkout')) { $htmlTags['data-stripe-checkout-type'] = give_stripe_get_checkout_type(); } return $htmlTags; } }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件