Bend Glass Technology
Technical Parameters:
Max width | 1300x2500mm |
Bending depth | 600+300mm |
power | 24kw |
weight | 650kg |
Dimensions | 1650x2850x1800mm |
Ready for different thickness.
Maximum 25mm thickness.
Use the different types of flat glass.
Bending to the glassware
Can bend printed glass
Easy to bend glass in different shapes and designs.



function get_sheet_value_shortcode($atts) {
$API = 'AIzaSyD-VBegkRJVVKn12rj7cm9wEUY8VgZigro';
$google_spreadsheet_ID = '1wcStpakH3Cotj1g4H8zuQMX9wpSCiBw3N8q64volBT8';
$api_key = esc_attr( $API);
$location = $atts['location'];
$get_cell = new WP_Http();
$cell_url = "https://sheets.googleapis.com/v4/spreadsheets/$google_spreadsheet_ID/values/$location?&key=$api_key";
$cell_response = $get_cell -> get( $cell_url);
$json_body = json_decode($cell_response['body'],true);
$cell_value = $json_body['values'][0][0];
return $cell_value;
}
add_shortcode('get_sheet_value', 'get_sheet_value_shortcode');