文件操作 - class-fields-pro.php
返回文件管理
返回主菜单
删除本文件
文件: /root/Desktop/OLD/plugin-wordpress/weforms/includes/fields/class-fields-pro.php
编辑文件内容
<?php /** * Pro fields wrapper class */ class WeForms_Form_Field_Pro extends WeForms_Field_Contract { /** * Render the text field * * @param array $field_settings * @param int $form_id * * @return void */ public function render( $field_settings, $form_id ) { echo esc_html_e( 'This is a premium field. You need to upgrade.', 'weforms' ); } /** * Check if it's a pro feature * * @return bool */ public function is_pro() { return true; } /** * Get field options setting * * @return array */ public function get_options_settings() { return __return_empty_array(); } /** * Get the field props * * @return array */ public function get_field_props() { return __return_empty_array(); } }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件