When do you actually use/create a module for Drupal 7? Because like i see it, you can pretty much use templates.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
This is a called Separation of Concerns. Templates are, well, templates. They are supposed to deal with data presentation and layout. Producing, retrieving, storage and processing of data is not supposed to happen in a template. Cleanly separated features implemented in different modules ease maintenance, evolution and code re-use.