1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165
<?php
namespace SIW\Elements;
use SIW\i18n;
use SIW\Formatting;
use SIW\Properties;
class Interactive_Map_Netherlands extends Interactive_Map {
protected $id = 'nl';
protected $file = 'netherlands';
protected $data = [
'mapwidth' => 600,
'mapheight' => 600,
'bottomLat' => '50.67500192979909',
'leftLng' => '2.8680356443589807',
'topLat' => '53.62609096857893',
'rightLng' => '7.679884929662812',
];
protected $options = [
'alphabetic' => false,
'search' => true,
'searchfields' => ['title', 'about', 'description'],
];
protected function get_categories() {
return [];
}
protected function get_locations() {
$projects = $this->get_projects();
$locations = [];
foreach ( $projects as $project ) {
$locations[] = [
'id' => sanitize_title( $project['code'] ),
'title' => $this->generate_project_title( $project ),
'image' => isset( $project['image'] ) ? wp_get_attachment_image_src( $project['image'][0], 'medium' )[0] : null,
'about' => $project['code'],
'lat' => $project['latitude'] ?? null,
'lng' => $project['longitude'] ?? null,
'description' => $this->generate_project_description( $project, true ),
'pin' => 'circular pin-md pin-label',
'category' => 'nl',
'fill' => Properties::SECONDARY_COLOR,
];
$provinces[] = sprintf( '#nl-%s path', $project['province'] );
}
$provinces = array_unique( $provinces );
$selectors = implode( ',', $provinces );
$this->inline_css = [
$selectors => [
'fill' => Properties::PRIMARY_COLOR_HOVER,
],
];
return $locations;
}
protected function get_mobile_content() {
$projects = $this->get_projects();
if ( empty( $projects ) ) {
return;
}
$mobile_content = '';
foreach ( $projects as $project ) {
$description = sprintf( '<b>%s</b>', $this->generate_project_title( $project, true ) ) . BR;
$description .= $this->generate_project_description( $project );
$mobile_content .= wpautop( $description );
}
return $mobile_content;
}
protected function get_projects() {
$projects = siw_get_option('dutch_projects');
return $projects;
}
protected function generate_project_description( array $project, bool $show_project_code = false ) {
$work_type = siw_get_work_type( $project['work_type'] );
$provinces = siw_get_dutch_provinces();
$province_name = $provinces[ $project['province'] ] ?? '';
$duration = Formatting::format_date_range( $project['start_date'], $project['end_date'] );
$description = [];
if ( $show_project_code ) {
$description[] = sprintf( __( 'Projectcode: %s', 'siw' ), $project['code'] );
}
$description[] = sprintf( __( 'Data: %s', 'siw' ), $duration );
$description[] = sprintf( __( 'Deelnemers: %s', 'siw' ), $project['participants'] );
$description[] = sprintf( __( 'Soort werk: %s', 'siw' ), $work_type ? $work_type->get_name() : '' );
if ( isset( $project['local_fee'] ) ) {
$description[] = sprintf( __( 'Lokale bijdrage: %s', 'siw' ), Formatting::format_amount( $project['local_fee'] ) );
}
$description[] = sprintf( __( 'Locatie: %s, provincie %s', 'siw' ), $project['city'], $province_name );
return Formatting::array_to_text( $description, BR );
}
protected function generate_project_title( array $project, bool $prefix_with_code = false ) {
$language = i18n::get_current_language();
$title = $project["name_{$language}"];
if ( $prefix_with_code ) {
$title = "{$project['code']} - {$title}";
}
return $title;
}
}