-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bc4c87f
commit de1b6de
Showing
84 changed files
with
27,270 additions
and
40,343 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -78,3 +78,7 @@ error_log | |
.cache | ||
**/.cache | ||
**/.cache/* | ||
|
||
/db/ | ||
/db/* | ||
!/db/.keep |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
14.15.1 | ||
14.17.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ | |
- PHP 7.3+ | ||
- Dedicated, managed or fast WordPress hosting (ability to resize & crop large image files 10MB+) | ||
- [Advanced Custom Fields PRO](https://www.advancedcustomfields.com/pro/) | ||
- Yearly license (€99,00 annually, per website). | ||
- Yearly license ([contact sales](mailto:[email protected])) | ||
|
||
### 1.2. Features | ||
|
||
|
@@ -42,7 +42,7 @@ | |
|
||
SweepBright uses a [webhook](https://website.sweepbright.com/docs/#header-1.-publish-a-property-to-the-custom-website) for publishing properties to your website. The webhook on your website should be responsible for retrieving and storing all of the property's information whenever a publication occurs in SweepBright. | ||
|
||
However, if you have a lot of publications scheduled at the same time it could take up a lot of processing resources. | ||
However, if you have a lot of publications scheduled at the same time it could take up a lot of processing resources. | ||
Potentially leading to unpredictable or unreliable behavior. | ||
|
||
We've solved this by creating our own webhook server which acts as a "man in the middle" between SweepBright and your website. | ||
|
@@ -57,7 +57,7 @@ Whenever a publication is scheduled in SweepBright it will first connect to our | |
|
||
### 2.3. What's the price / additional costs? | ||
|
||
> €99,00 annually, per website. | ||
> The plugin comes with a yearly subscription, dependent on the usage of our webhook server. | ||
Additional costs may occur depending on your usage of our webhook server. | ||
For regular use or less than 15 publications per day on average, there are no additional costs. | ||
|
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
46 changes: 46 additions & 0 deletions
46
admin/vue-components/Pages/Components/Editor/Fields/FieldTextArea.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
<template> | ||
<textarea | ||
:value="inputData(field, col)" | ||
@change="updateData($event, col, field)" | ||
> | ||
</textarea> | ||
</template> | ||
|
||
<script> | ||
export default { | ||
props: ["field", "col", "lang"], | ||
components: {}, | ||
computed: {}, | ||
data() { | ||
return {}; | ||
}, | ||
methods: { | ||
inputData(field, activeCol) { | ||
let data = this.col.data[field.sync ? "default" : this.lang][field.id]; | ||
if (!data && !field.allow_empty) { | ||
data = field.default; | ||
if (field.sync) { | ||
activeCol.data["default"][field.id] = data; | ||
} else { | ||
activeCol.data["en"][field.id] = data; | ||
activeCol.data["nl"][field.id] = data; | ||
activeCol.data["fr"][field.id] = data; | ||
} | ||
} | ||
return data; | ||
}, | ||
updateData(e, col, field) { | ||
const data = e.target.value; | ||
if (!field.sync) { | ||
col.data[this.lang][field.id] = data; | ||
} else { | ||
col.data["default"][field.id] = data; | ||
} | ||
this.$forceUpdate(); | ||
}, | ||
}, | ||
mounted() {}, | ||
}; | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.