upskill-event-manager/wordpress-dev/wordpress/wp-content/plugins/hvac-community-events/hvac-community-events.php
bengizmo cdef12ee80 feat(events): Implement fallback logic and UI for Create/Modify Event page
- Refactored fallback submission logic in `class-event-handler.php` to remove `wp_die`/`exit` calls and use redirects for error handling, enabling proper unit testing.
- Implemented meta-data saving (dates, venue, organizer) in the fallback logic using `update_post_meta`.
- Updated unit tests (`test-event-management.php`) to remove `markTestIncomplete` calls related to handler errors and uncommented meta assertions. Unit tests for fallback logic now pass.
- Added Instructions section and Return to Dashboard button to the event form shortcode (`display_event_form_shortcode`).
- Applied basic theme styling classes (`ast-container`, `notice`, `ast-button`) to the event form.
- Updated `docs/implementation_plan.md` to reflect completion of tasks 4.1-4.5 and set focus to Task 5.

Refs: Task 4.1, 4.2, 4.3, 4.4, 4.5
2025-04-01 11:46:24 -03:00

144 lines
No EOL
5.2 KiB
PHP

<?php
/**
* Plugin Name: HVAC Community Events
* Plugin URI: https://upskillhvac.com
* Description: Custom plugin for HVAC trainer event management system
* Version: 1.0.0
* Author: Upskill HVAC
* Author URI: https://upskillhvac.com
* License: GPL-2.0+
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
* Text Domain: hvac-community-events
*/
// Exit if accessed directly
if (!defined('ABSPATH')) {
exit;
}
// error_log('[HVAC DEBUG] Main plugin file hvac-community-events.php loaded.'); // REMOVED DEBUG LOG
// Define plugin constants
define('HVAC_CE_VERSION', '1.0.0');
define('HVAC_CE_PLUGIN_DIR', plugin_dir_path(__FILE__));
define('HVAC_CE_PLUGIN_URL', plugin_dir_url(__FILE__));
/**
* Create required pages and roles upon plugin activation.
*/
function hvac_ce_create_required_pages() {
// Ensure the roles class is available
require_once HVAC_CE_PLUGIN_DIR . 'includes/class-hvac-roles.php';
error_log('HVAC CE: Activation hook fired.'); // Add logging start
$required_pages = [
'community-login' => [
'title' => 'Community Login',
'content' => '<!-- wp:shortcode -->[hvac_community_login]<!-- /wp:shortcode -->',
],
'trainer-registration' => [
'title' => 'Trainer Registration',
'content' => '<!-- wp:shortcode -->[hvac_trainer_registration]<!-- /wp:shortcode -->',
],
'hvac-dashboard' => [
'title' => 'Trainer Dashboard',
'content' => '', // Content handled by template or redirect
],
'manage-event' => [ // Added Manage Event page
'title' => 'Manage Event',
'content' => '<!-- wp:shortcode -->[hvac_event_form]<!-- /wp:shortcode -->',
],
// Add future required pages here
];
$created_pages_option = 'hvac_community_pages';
$created_pages = get_option($created_pages_option, []);
foreach ($required_pages as $slug => $page_data) {
// Check if page already exists (by slug)
$existing_page = get_page_by_path($slug, OBJECT, 'page');
if (!$existing_page) {
error_log("HVAC CE: Page with slug '{$slug}' not found. Attempting to create."); // Add logging: page missing
// Page does not exist, create it
$post_data = [
'post_title' => $page_data['title'],
'post_name' => $slug,
'post_content' => $page_data['content'],
'post_status' => 'publish',
'post_type' => 'page',
'comment_status' => 'closed',
'ping_status' => 'closed',
];
$page_id = wp_insert_post($post_data);
// Log the result of wp_insert_post
if (is_wp_error($page_id)) {
error_log("HVAC CE: Error creating page '{$slug}': " . $page_id->get_error_message());
} else {
error_log("HVAC CE: Successfully created page '{$slug}' with ID: {$page_id}.");
}
// Store the created page ID
if ($page_id && !is_wp_error($page_id)) {
// Use a key based on the slug or feature name for clarity
$feature_key = str_replace('-', '_', $slug);
$created_pages[$feature_key] = $page_id;
}
}
}
// Update the option with any newly created page IDs
update_option($created_pages_option, $created_pages);
// Create the custom role (Moved inside the activation function)
$roles_manager = new HVAC_Roles();
$roles_manager->create_trainer_role();
error_log('HVAC CE: Attempted to create hvac_trainer role.'); // Add logging: role creation attempt
} // <<-- Brace moved here
register_activation_hook(__FILE__, 'hvac_ce_create_required_pages');
/**
* Remove custom roles upon plugin deactivation.
*/
function hvac_ce_remove_roles() {
require_once HVAC_CE_PLUGIN_DIR . 'includes/class-hvac-roles.php';
$roles_manager = new HVAC_Roles();
$roles_manager->remove_trainer_role();
error_log('HVAC CE: Deactivation hook fired, attempted to remove hvac_trainer role.');
}
register_deactivation_hook(__FILE__, 'hvac_ce_remove_roles');
/**
* Enqueue styles specifically for the HVAC Dashboard page.
*/
function hvac_ce_enqueue_dashboard_styles() {
// Check if we are on the specific dashboard page
// Assumes the page slug is 'hvac-dashboard' as created in the activation hook
if ( is_page( 'hvac-dashboard' ) ) {
wp_enqueue_style(
'hvac-dashboard-style',
HVAC_CE_PLUGIN_URL . 'assets/css/hvac-dashboard.css',
[], // No dependencies for now
HVAC_CE_VERSION
);
}
}
add_action( 'wp_enqueue_scripts', 'hvac_ce_enqueue_dashboard_styles' );
// Include the main plugin class
require_once HVAC_CE_PLUGIN_DIR . 'includes/class-hvac-community-events.php';
// Initialize the plugin
function hvac_community_events_init() {
// error_log('[HVAC DEBUG] hvac_community_events_init function called (plugins_loaded hook).'); // REMOVED DEBUG LOG
return HVAC_Community_Events::instance();
}
// error_log('[HVAC DEBUG] About to add plugins_loaded action hook.'); // REMOVED DEBUG LOG
add_action('plugins_loaded', 'hvac_community_events_init');