By Liquid Sword on
Hello All,
I'm new to Drupal and I have a very newbie question. I have a page ( Screen shot http://vvcap.net/db/WKXd2TAOBXCN63RHK-PK.htp) that has 4 different queries. I could be wrong but I'm guessing that this page cannot be made with one view query.
So my question is, is my page module worth? It won't do anything but display a page. Should I create a page for this or is there a better way to do this in Drupal?
Drupal 7.x
Comments
Custom module is fine for any
Custom module is fine for any kind of custom logic. It does not matter if it is one page or number of them.
The screen you attached can be done in several ways:
- Using modules panels and views
- Creating custom module with custom blocks and queries
- Creating custom module combined with views, where individual views gets programatically loaded and displayed
Each way will do its job. If you like coding go for custom solution. If you are not so much of a coder go for panels and views - find a few screen casts for it and try to click it out.