I wanted to combine the focuscrop plugin and the thumbext (for automatic retina images).
I tried to change all mentions of the original thumb function in focuscrop into ThumbExt, however it then just shows empy pictures.
Do I need to “import” the thumbext plugin somewhere into the focuscrop source?
Of course you must also pass the options to the thumbExt() function.
Do you have taken into account, that the thumbExt() function is a function and therefore uses the “old syntax”. Calling this function the same way as $image->thumb() does not work.
(I know, i should give the plugin some love and adapt it to the “new” syntax and also to the new thumb API).
Standard question: Do you have the errors turned on (c::set('debug', true); in you config) and are there any errors?
I haven’t tested the syntax you’re trying, but I don’t think, that it would work, because ThumbExt is “only” a normal php function and not registered as a method, that you can apply on the file object.
I don’t know, how much you know about functions and methods in object oriented programming. But the essential thing is, that they have a different syntax in kirby and therefore you cannot call a “normal” php function the same way as every other kirby method.
Error messages are inserted when they occur, so they can be somewhere on your page.