- Issue created by @guignonv
- 🇫🇷France guignonv Montpellier
@divyansh.gupta
Sorry I should have put that I was working on it. My bad, and my apologies. I just committed a fix. However, there are still things to fix. It is not possible to edit the file/image field settings now.
And the code needs to be tested: we need to make sure it does not affect existing file/image fields validation and use on nodes, and tests other aspects. The UI also needs to be improved to allow to add/remove URIs.Please feel free to work on the new code now, I don't have time right now and I'm moving on something else.
- 🇮🇳India divyansh.gupta Jaipur
Ok @guignonv, no worries i will work on the remaining fixes.
- 🇮🇳India divyansh.gupta Jaipur
Sorry @guignonv, but i am not able to use this module i am seeing this error again and again
Error message: External entities requires the galbar/jsonpath library.
Although i installed galbar/jsonpath mutliple times.
- 🇫🇷France guignonv Montpellier
If you install using Composer, it should be installed automatically. If not, then you need to put it in your installation root in /vendor/galbar/.
It should look like that:└── jsonpath ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── NOTICE ├── README.md ├── app │ ├── docgen.php │ └── test.php ├── composer.json ├── docs ├── phpunit.xml.dist ├── src │ └── Galbar │ ├── JsonPath │ │ ├── Expression │ │ │ ├── ArrayInterval.php │ │ │ ├── BooleanExpression.php │ │ │ ├── ChildNameList.php │ │ │ ├── Comparison.php │ │ │ ├── InArray.php │ │ │ ├── IndexList.php │ │ │ └── Value.php │ │ ├── InvalidJsonException.php │ │ ├── InvalidJsonPathException.php │ │ ├── JsonObject.php │ │ ├── JsonPath.php │ │ ├── Language │ │ │ ├── ChildSelector.php │ │ │ ├── Regex.php │ │ │ └── Token.php │ │ └── Operation │ │ ├── GetChild.php │ │ ├── GetRecursive.php │ │ └── SelectChildren.php │ └── Utilities │ └── ArraySlice.php └── tests ├── Galbar │ ├── JsonPath │ │ ├── JsonObjectIssue37Test.php │ │ ├── JsonObjectIssue64Test.php │ │ ├── JsonObjectLengthOperatorTest.php │ │ ├── JsonObjectTest.php │ │ └── JsonPathKeyRegexMatchTest.php │ └── Utilities │ └── ArraySliceTest.php └── bootstrap.php