Pacific Safety Solutions

edit

By beng

Pacific Safety Solutions is a safety compliance organization. My contributions to their website include performing monthly maintenance tasks on plugins, themes, and the WordPress core, as well as troubleshooting various issues, such as mail deliverability and Gravity Forms. Additionally, I implemented customizations to the WooCommerce dashboard to create a “User Portal” interface. This portal allows registered users to submit and review previously submitted Field Safety Documents.

The customizations involved creating a custom WooCommerce endpoint using the add_action hook, which connects to a custom function for gathering form data specific to the currently logged-in user. This function utilizes the wp_get_current_user function to retrieve the current user’s details and sets up variables for use with the Gravity Forms API (GFAPI) class. The get_entries method is then employed to fetch entries for the specified form.

The entries retrieved via the GFAPI call are further filtered to include only those created by the logged-in user. Finally, the relevant data is extracted from the filtered results and displayed in the custom template for the user portal.

        
            add_action( 'woocommerce_account_completed-assessments_endpoint', 'custom_assessments_content' );

function custom_assessments_content() {

    $user = wp_get_current_user();

    $user_id = $user->ID;

    $criteria = array();
    $sorting = null;
    $page_size = 1000; // Number of entries to fetch per batch
    $offset = 0;

    $paging = array(
        'offset' => $offset,
        'page_size' => $page_size
    );
    
    // possibly expand this to include all form entries from all forms 
    $entries = GFAPI::get_entries(3, $criteria, $sorting, $paging);

    $filtered_entries = array_filter( $entries, function( $entry ) use ( $user_id ) {
        return isset( $entry['created_by'] ) && $entry['created_by'] == $user_id;
    });


    $entries_data = array();
    foreach ($filtered_entries as $entry) {
        $entries_data[] = array(
            'id' => $entry['id'],
            'date_created' => $entry['date_created'],
            'created_by' => $entry['created_by'],
            'project' => $entry[206],
            'site_id' => $entry[207],
            'general_contractor' => $entry[203],
            'view_report_url' => "/assessments/report-" . $entry['id'],
            'download_shortcode' => do_shortcode("[gravitypdf id='602ecc610f422' entry='" . $entry['id'] . "' text='Download']")
        );
    }

    include('assessments/assessments-content.php');

}
        
    

This project was part of the work I did for Curious Minds Media as a Senior developer.

Ben Grzybowski web development and design in portland oregon