Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pull master #1

Open
wants to merge 35 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
4d51b77
(feat): disable ES indexable when yard-elasticsearch active (#2)
niekh1234 Dec 14, 2022
6eda606
(fix): properly cast items and add default value
niekh1234 Dec 14, 2022
9e5396e
(chore): clean-up, php8 and compliant with new version of ElasticPress
Jan 26, 2023
c64e464
(feat): replace GF uploads with WP attachments admin
niekh1234 Mar 13, 2023
aeda4d4
(chore): revisit metabox fields
niekh1234 Mar 13, 2023
1db9064
(feat): add adres field
niekh1234 Mar 13, 2023
af49ca5
(refactor): small refactoring
Mar 16, 2023
8067d73
(feat): migration of existing items + api output
Mar 17, 2023
e443348
(chore): release v3.0.0
Mar 21, 2023
2f4b5ef
(fix): bijlageEntity
Mar 24, 2023
bc417d9
(feat): implement CMB2
Apr 17, 2023
9d3d563
(feat): while migrating, post excerpt to meta field
May 2, 2023
e3d456f
(fix): use CURL instead of file_get_contents
May 2, 2023
ccdc6e0
(refactor): date format in api and filling of title on save
May 16, 2023
4df85df
(feat): add show on taxonomy
Jun 15, 2023
b3497ef
(refactor): show on taxonomy method for explanation was called static…
Jul 7, 2023
c822596
(refactor): hide taxonomies from quick edit menu
Jul 7, 2023
b72e8d5
(feat): add file size of attachments to the api response
Sep 8, 2023
9809981
(fix): composing inside GravityFormsUploadToMediaLibrary trait
Oct 12, 2023
3648481
(fix): file size and URL's of attachments in the api response
Oct 12, 2023
15969d5
(chore): release v4.1.4
Oct 12, 2023
766dec8
(feat): add publication date to the api response
Jan 12, 2024
a225813
(feat): implement setting for configuring a fileserver URL
Jan 12, 2024
b637aed
(feat): use 'samenvatting' meta first with the post_excerpt as fallback
Feb 15, 2024
15f5cb6
(fix): unhandled multidimensional arrays from AdresEntity, COORDSEnti…
Feb 15, 2024
ded7131
(chore): add publiccode.yaml
Feb 15, 2024
4a6436c
(feat): add missing fields that are needed by ElasticPress in search …
Feb 15, 2024
43b1b44
(fix): typo in OpenWOOIndexable slug
Feb 15, 2024
0d552d4
(chore): release version 4.2.3
Feb 15, 2024
7aceae9
(fix): typo metabox field Lattitude -> Latitude
Feb 15, 2024
d7c9042
(chore): Updated CMB2 version to v2.11.0
projmunoz Apr 5, 2024
4720368
(refactor): switch out cURL for wp_remote_get so WordPress filters an…
rmpel Jul 10, 2024
1e44b0b
(fix): typos
rmpel Jul 17, 2024
f9ebdaa
(feat): add new fields with double negation for upload status in URLs
rmpel Jul 17, 2024
9de5d59
(chore): release version 4.2.7
Jul 17, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
(feat): add adres field
niekh1234 committed Mar 13, 2023
commit 1db9064fc58e9fbe9eb1ab0632d5201c5ac6743d
5 changes: 5 additions & 0 deletions config/metaboxes.php
Original file line number Diff line number Diff line change
@@ -212,6 +212,11 @@
'id' => 'woo_Geografisch_gebied',
'type' => 'text',
],
[
'name' => __('Adres', OWO_LANGUAGE_DOMAIN),
'id' => 'woo_Adres',
'type' => 'text',
],
[
'name' => __('Geografische positie', OWO_LANGUAGE_DOMAIN),
'id' => 'woo_Geografische_positie',
1 change: 1 addition & 0 deletions src/OpenWOO/Models/OpenWOO.php
Original file line number Diff line number Diff line change
@@ -67,6 +67,7 @@ public function transform(): array
'BAG_ID' => $this->meta('BAG_ID', ''),
'BGT_ID' => $this->meta('BGT_ID', ''),
'Postcodegebied' => $this->meta('Postcodegebied', ''),
'Adres' => $this->meta('Adres', ''),
];

if ($coords = COORDSEntity::make($this->meta('COORDS', []))->get()) {