文件操作 - class-template-polling-form.php
返回文件管理
返回主菜单
删除本文件
文件: /root/Desktop/OLD/plugin-wordpress/weforms/includes/templates/class-template-polling-form.php
编辑文件内容
<?php /** * A simple contact form for sending message */ class WeForms_Template_Polling_Form extends WeForms_Form_Template { public function __construct() { parent::__construct(); $this->enabled = class_exists( 'WeForms_Pro' ); $this->title = __( 'Polling Form', 'weforms' ); $this->description = ''; $this->category = 'default'; $this->image = WEFORMS_ASSET_URI . '/images/form-template/polling_form.png'; $this->category = 'feedback'; } /** * Get the form fields * * @return array */ public function get_form_fields() { $all_fields = $this->get_available_fields(); $form_fields = [ array_merge( $all_fields['radio_field']->get_field_props(), [ 'required' => 'yes', 'label' => 'Poll Question', 'name' => 'poll_field', ] ), ]; return $form_fields; } /** * Get the form settings * * @return array */ public function get_form_settings() { $defaults = $this->get_default_settings(); return array_merge( $defaults, [ 'message' => __( 'Thanks for taking part in the poll!', 'weforms' ), 'submit_text' => __( 'Submit', 'weforms' ), 'label_position' => 'left', ] ); } }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件