Search found 26 matches

by Bananamoon
14 Sep 2015, 12:56
Forum: Help
Topic: Creating a subcomponent
Replies: 29
Views: 16319

Re: Creating a subcomponent

Right, I'm trying this atm and am getting the following error: View [app] not found. I followed the Aimeos guide for installing the package. Not sure what I'm missing? You need the base view for your application: https://github.com/aimeos/aimeos-laravel#setup Install the package like in the documen...
by Bananamoon
14 Sep 2015, 12:52
Forum: Help
Topic: Creating a subcomponent
Replies: 29
Views: 16319

Re: Creating a subcomponent

Right, I'm trying this atm and am getting the following error: View [app] not found. I followed the Aimeos guide for installing the package. Not sure what I'm missing? You need the base view for your application: https://github.com/aimeos/aimeos-laravel#setup Install the package like in the documen...
by Bananamoon
14 Sep 2015, 12:08
Forum: Help
Topic: Creating a subcomponent
Replies: 29
Views: 16319

Re: Creating a subcomponent

Hi! I'm sorry for the immense delay, I had another project that needed to be finished :) Don't excuse, that's normal ;-) I would create the basic style, so it matches your current theme, but I'm not really sure how I run my fork locally? Do I just put the Aimeos folder into the vendor folder of a n...
by Bananamoon
14 Sep 2015, 09:52
Forum: Help
Topic: Creating a subcomponent
Replies: 29
Views: 16319

Re: Creating a subcomponent

Yay! I'd love to send a pull request! :D Do you also need the HTML files with it? These have a different style than your shop, so I'm not sure if it's useful. Great! :-D Yes, the structural HTML would be needed and maybe the basic CSS. We can adapt the styles later Thanks in advance :-) Hi! I'm sor...
by Bananamoon
03 Sep 2015, 12:22
Forum: Help
Topic: Creating a subcomponent
Replies: 29
Views: 16319

Re: Creating a subcomponent

Yay Error gone! Altho I have no clue what to do now, since I thought that this file would extend/overwrite this file: class Client_Html_Basket_Mini_Main_Default extends Client_Html_Abstract Yes, it extends (no inheritance) the basket/mini component dynamically but doesn't overwrite it. You can now ...
by Bananamoon
03 Sep 2015, 09:31
Forum: Help
Topic: Creating a subcomponent
Replies: 29
Views: 16319

Re: Creating a subcomponent

I've been trying to actually implement this, for the mini basket but fail to complete it so far. Here's what I got: class Client_Html_Common_Decorator_Optiphar extends Client_Html_Common_Decorator_Abstract implements Client_Html_Common_Decorator_Interface { } This decorator is stored in: ai-project...
by Bananamoon
03 Sep 2015, 07:32
Forum: Help
Topic: Creating a subcomponent
Replies: 29
Views: 16319

Re: Creating a subcomponent

Soo, the new Aimeos core release is out (2015.07.4 for the Aimeos Laravel and Symfony 1.1 packages) and we've added an article about decorators for HTML clients as well: https://aimeos.org/docs/Developers/Html_frontend/Extend_existing_components Have fun! :-) Hello! First of all, thanks for the upd...
by Bananamoon
20 Aug 2015, 13:42
Forum: Help
Topic: Creating a subcomponent
Replies: 29
Views: 16319

Re: Creating a subcomponent

So what if you do have to change some params in _setViewParams? You do have to change the name of your class, right? The best way would be to create a decorator, e.g. "Client_Html_Common_Decorator_Rotex" and add the required values in the getBody() and getHeader() methods. This is the pre...
by Bananamoon
20 Aug 2015, 13:04
Forum: Help
Topic: Creating a subcomponent
Replies: 29
Views: 16319

Re: Creating a subcomponent

So what if you do have to change some params in _setViewParams? You do have to change the name of your class, right? Like this as Luke defined? class Client_Html_Catalog_RotexDetail_Default extends Client_Html_Catalog_Detail_Default And how does the default subcomponent will use this? Do you need to...
by Bananamoon
20 Aug 2015, 13:00
Forum: Laravel package
Topic: Modify the basket/mini layout
Replies: 4
Views: 5354

Re: Modify the basket/mini layout

Yes you are right! It works now :) Thank you! What was the problem? The cache in the session? Does it appear again after you did another change? It must've been the caching yes. When I opened my project in an incognito window, it was all fine. So in the end I did everything the right way, just tota...