b6df4dbb92
MLS plugin fixes from this session: - Fix silent insert failures: location column NOT NULL was rejecting wpdb->insert calls, causing ~18k new properties since Dec 2025 to be lost. Inserts now build raw SQL with ST_PointFromText so the spatial column is populated atomically. - Auto-refresh expired media URLs in MLS_Media_Handler::fetch_and_cache(), guarded by a property-level GET_LOCK so concurrent fetches share one API refresh. - Normalize WP_Error to null in mls_get_property_image() so callers can rely on the documented string|null contract. - Support comma-separated property_type filters in MLS_Query and MLS_Cluster so the homepage "View All Commercial" link (?property_type=Commercial+Sale,Land,Farm) actually filters correctly. - Incremental sync now looks back 10 minutes past the latest modification timestamp as a safety margin against missed records. - Smart sync exits silently (info-level, not warning) when a full sync is in progress. Operational: - New cron: weekly full sync Sundays at 3 AM (/usr/local/bin/mls-full-sync). - New cron: hourly 2GB cap on mls-thumbnails/ and cache/transformed-images/ (/usr/local/bin/mls-image-cache-cap). - Logrotate config for wp-content/debug.log (2-day retention, daily rotation, delaycompress). Repo policy: - CLAUDE.md updated with explicit "commit everything except build artifacts" policy. - .gitignore: untrack runtime image caches and debug.log rotations. Other modifications in this snapshot are pre-existing in-flight theme/plugin/db_content_updates work. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
87 lines
2.4 KiB
PHP
Executable File
87 lines
2.4 KiB
PHP
Executable File
<?php
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit;
|
|
}
|
|
|
|
/**
|
|
* Simple Contact Form Template for WPForms.
|
|
*
|
|
* @since 1.7.5.3
|
|
*/
|
|
class WPForms_Template_Simple_Contact_Form extends WPForms_Template {
|
|
|
|
/**
|
|
* Primary class constructor.
|
|
*
|
|
* @since 1.7.5.3
|
|
*/
|
|
public function init() {
|
|
|
|
$this->name = esc_html__( 'Simple Contact Form', 'wpforms-lite' );
|
|
$this->priority = 1;
|
|
$this->source = 'wpforms-core';
|
|
$this->categories = 'all';
|
|
$this->core = true;
|
|
$this->slug = 'simple-contact-form-template';
|
|
$this->url = 'https://wpforms.com/templates/simple-contact-form-template/';
|
|
$this->description = esc_html__( 'Collect the names, emails, and messages from site visitors that need to talk to you.', 'wpforms-lite' );
|
|
$this->thumbnail = esc_url( WPFORMS_PLUGIN_URL . 'assets/images/thumbnail-simple-contact-form-template.jpg' );
|
|
$this->data = [
|
|
'fields' => [
|
|
'1' => [
|
|
'id' => '1',
|
|
'type' => 'name',
|
|
'format' => 'first-last',
|
|
'label' => esc_html__( 'Name', 'wpforms-lite' ),
|
|
'required' => '1',
|
|
'size' => 'medium',
|
|
],
|
|
'2' => [
|
|
'id' => '2',
|
|
'type' => 'email',
|
|
'label' => esc_html__( 'Email', 'wpforms-lite' ),
|
|
'required' => '1',
|
|
'size' => 'medium',
|
|
],
|
|
'3' => [
|
|
'id' => '3',
|
|
'type' => 'textarea',
|
|
'label' => esc_html__( 'Comment or Message', 'wpforms-lite' ),
|
|
'size' => 'medium',
|
|
'placeholder' => '',
|
|
'css' => '',
|
|
],
|
|
],
|
|
'field_id' => 4,
|
|
'settings' => [
|
|
'form_desc' => '',
|
|
'submit_text' => esc_html__( 'Submit', 'wpforms-lite' ),
|
|
'submit_text_processing' => esc_html__( 'Sending...', 'wpforms-lite' ),
|
|
'antispam_v3' => '1',
|
|
'notification_enable' => '1',
|
|
'notifications' => [
|
|
'1' => [
|
|
'email' => '{admin_email}',
|
|
'replyto' => '{field_id="2"}',
|
|
'message' => '{all_fields}',
|
|
],
|
|
],
|
|
'confirmations' => [
|
|
'1' => [
|
|
'type' => 'message',
|
|
'message' => esc_html__( 'Thanks for contacting us! We will be in touch with you shortly.', 'wpforms-lite' ),
|
|
'message_scroll' => '1',
|
|
],
|
|
],
|
|
'ajax_submit' => '1',
|
|
],
|
|
'meta' => [
|
|
'template' => $this->slug,
|
|
],
|
|
];
|
|
}
|
|
}
|
|
|
|
new WPForms_Template_Simple_Contact_Form();
|