Hello!
I use Admin View custom PHP postSaveHook Method to get thumbnail_url from vimeo based on vimeo_video_url field value and store that information to the database.
To get the data from Vimeo I am using composer.
So, I need to add the following to the top of controllers/myitemview.php, manually to make my code to work.
require JPATH_SITE.'/vendor/autoload.php';
use Vimeo\Vimeo;
Is there any way to do it from JCB?
I am a newbie so excuse me for having second question
I'm using Site View custom button PHP (model methods) to add some functions.
In my list view the code is working perfect but in item view the code is missing from models/myitemview.php and I have to edit the file manually.
What am I missing?
Thank you!