Alcan City

Experience
The Future Of Commerce
At Alcan Boulevard

Alcan Boulevard is a curated commercial hub crafted for a new generation of entrepreneurs, urban shoppers, and modern families in search of vibrant, connected experiences. It is more than just a retail destination. It is a place where business meets lifestyle in the heart of a fast-growing city.

Strategically located in Bandar Baru Klang, Alcan Boulevard is a commercial hub in Klang that offers direct access to the LRT3 station via a covered walkway. This provides unmatched convenience for commuters and visitors alike. Surrounded by a mature business district with established banks & Aeon Bukit Raja, Alcan Boulevard is positioned in a prime location that draws steady streams of visitors daily.

Thoughtfully designed with a modern façade, prime wide frontage with high ceiling, along with the enhanced convenience of shared lift access and ample parking space, Alcan Boulevard combines convenience, functionality, and contemporary appeal. The environment is vibrant and welcoming, supported by a built-in residential community and landscaped spaces that encourage daily visits, casual meetups, and social interaction.

As Klang continues to grow, Alcan Boulevard presents a smart long-term investment opportunity. Its prominent main road frontage, strong visibility, and excellent connectivity make it an ideal choice for forward-thinking entrepreneurs, lifestyle brands, and businesses looking to be part of Klang’s next commercial hotspot.

TYPE 1

1-Storey Shops

From 1,052 sqft to 1,784 sq.ft.

TYPE 2

3-Storey Shop Offices

From 4,550 sqft to 5,641 sq.ft.

A New Urban Landmark
For Business
And Community

Prime main road
frontage

Expansive layout with
high ceilings

Contemporary facade with
lift access

Culinary-concept
commercial space

Ample, well-planned 
parking bays

Positioned in a thriving business district

Steady footfall from
on-site residences

Curated
landscaped spaces

Zoomable Image

Use zoom buttons to resize the map.

Lifestyle & Recreation

  • KEC Golf 40m
  • AEON Bukit Raja 150m
  • Wyndham Hotel 400m
  • U One Sport Centre 700m
  • Centro Mall 2.3km
  • Klang Parade 2.6km
  • Central i-City Mall 3.4km
  • i-City Theme Park 5.0km

Education & Institutions

  • ACMAR Int School 1.5km
  • SMJK Kwang Hua 1.7km
  • Kwang Hua Private High School 2.0km
  • SJKC Taman Rashna 2.3km
  • SK (1) & (2) Jalan Batu Tiga 2.3km
  • SMK Tinggi Klang 3.6km
  • UiTM University 4.1km
  • Sri KDU International School Klang 4.6km

Infrastructure & Connectivity

  • WCE & Shapadu Highway 600m
  • Federal Highway 800m
  • NKVE 1.4km

Healthcare & Wellness

  • KPJ Hospital 1.4km
  • Hospital Shah Alam 4.7km
  • Sri Kota Specialist Medical Centre 5.2km
  • Columbia Asia Hospital Klang 6.8km

Public Transportation

  • Bandar Baru Klang LRT Station 450m
  • Klang Sentral Terminal 8.0km

BE PART OF ALCAN CITY

Register Your Interest

Leave us your contact details and we will get in touch with you soon.

Table of the units

<?php

// ─── Hook Into CF7 Submission ────────────────────────────
add_action('wpcf7_mail_sent', 'send_cf7_data_to_api_and_logfile');

function send_cf7_data_to_api_and_logfile($contact_form) {
    // ✅ Only run for a specific form ID (change 1234 to your form ID)
    if ($contact_form->id() != 152) {
        return;
    }

    $submission = WPCF7_Submission::get_instance();
    if ($submission) {
        $data = $submission->get_posted_data();

        $payload = [
			'name'                   => sanitize_text_field($data['your-name']),
			'phone'                  => sanitize_text_field($data['phonetext-600']),
			'email'                  => sanitize_email($data['your-email']),
			'preferred_property_type'=> is_array($data['prefer-property']) ? implode(', ', $data['prefer-property']) : sanitize_text_field($data['prefer-property']),
			'source_of_enquiry'      => is_array($data['enquiry-source']) ? implode(', ', $data['enquiry-source']) : sanitize_text_field($data['enquiry-source'])
		];

        $response = wp_remote_post(
            'https://services.leadconnectorhq.com/hooks/rtYVCVKq2G8uI1Q38qda/webhook-trigger/0efccc56-8f9a-47e5-a795-02b49fd8ad4b',
            [
                'method'      => 'POST',
                'headers'     => ['Content-Type' => 'application/json'],
                'body'        => wp_json_encode($payload),
                'data_format' => 'body'
            ]
        );

        $status   = is_wp_error($response) ? 'failed' : 'success';
        $res_body = is_wp_error($response) ? $response->get_error_message() : wp_remote_retrieve_body($response);

        // ✅ Write to log file
        $log_entry = [
            'date'     => current_time('mysql'),
            'name'     => $payload['name'],
            'email'    => $payload['email'],
            'phone'    => $payload['phone'],
            'property' => $payload['preferred_property_type'],
            'source'   => $payload['source_of_enquiry'],
            'status'   => $status,
            'response' => $res_body
        ];

        $log_line = implode(" | ", array_map('sanitize_text_field', $log_entry)) . PHP_EOL;
        $log_file = WP_CONTENT_DIR . '/cf7-api.log';
        file_put_contents($log_file, $log_line, FILE_APPEND | LOCK_EX);
    }
}

// ─── Add Admin Menu Page ────────────────────────────
add_action('admin_menu', 'cf7_api_logfile_menu');
function cf7_api_logfile_menu() {
    add_menu_page(
        'CF7 API Logs',
        'SJ360 API Logs',
        'manage_options',
        'cf7-api-logs',
        'cf7_api_logfile_page',
        'dashicons-list-view',
        26
    );
}

// ─── Render Admin Page ────────────────────────────
function cf7_api_logfile_page() {
    $log_file = WP_CONTENT_DIR . '/cf7-api.log';

    echo '<div class="wrap"><h1>Contact Form API Logs</h1>';

    if (!file_exists($log_file)) {
        echo '<p>No logs found.</p></div>';
        return;
    }

    $lines = file($log_file, FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES);
    $lines = array_reverse($lines); // show latest first
    $lines = array_slice($lines, 0, 100); // limit to last 100 entries

    echo '<table class="widefat striped"><thead><tr>
        <th>Date</th><th>Name</th><th>Email</th><th>Phone</th>
        <th>Property</th><th>Source</th><th>Status</th><th>Response</th>
    </tr></thead><tbody>';

    foreach ($lines as $line) {
        $parts = explode(" | ", $line);
        echo '<tr>';
        foreach ($parts as $index => $cell) {
            if ($index === 6) { // status column
                $color = (trim($cell) === 'success') ? 'green' : 'red';
                echo '<td><strong style="color:' . $color . '">' . esc_html($cell) . '</strong></td>';
            } else {
                echo '<td>' . esc_html($cell) . '</td>';
            }
        }
        echo '</tr>';
    }

    echo '</tbody></table></div>';
}

Disclaimer: The information provided, including unit sizes, is for reference only and may be subject to changes as required by the relevant authorities or final construction specifications.