It’s meant to be a very simple app to introduce you to compiling javascript, network requests, and in fact the only thing this app can do is display and resize cat gifs.
You can find this tutorial (and all the previous tutorials) here:
The tutorial is perhaps a bit harder than the previous tutorials, mainly because it is longer and more topics are introduced. But we really tried hard to outline all the steps and explain the concepts
The connection of an app with the database is not in the scope of this tutorial. We will cover this in later tutorials! For now the images are stored in the /img directory which will become clear when following the steps of the tutorial. Have you given it a try already?
Everything works fine. Thank you very much.
Now, I am practicing. I make some changes an look, what’s happening. And I try to enhance the app. Unfortunately I do not know where to find the information I need. That’s why I asked:
Where is the configuration stored?
How can I show pictures from a users directory?
It would please me, if you could add some exercises and links for further reading to the tutorials.
It’s nice, that the connection of an app with the database will be covered in a later tutorial.
hi @olheem
The configuration is stored in the database and is specific to each user. It’s in the oc_preferences table
You cannot show pictures from a users directory unless you make deep changes to the app. For this you would want to look into extending the controller method that gets the image list.
Using an IDE which parses project files can be of great help too. You get method auto-completion, PhpDoc support, type check etc…
I can recommend KDevelop (FOSS) and PhpStorm (not FOSS).