Hi guys, I've been working with Drupal maybe for 2 yrs now, but haven't really developed anything like a "real system" with it, just basic website for small companies around my city.
But now I'm into a really project and I would like to do with Drupal.
Basically It will be a portal for the manufacturing Industry it is called Acervo Industrial, they already have an idea of how it should be, actually they are already running some sort of a website as you can check it here httphttp://www.acervoindustrial.com.br
Goals:
1 - Manufacturing Industries can register at the website. #Here I need to edit the sign up form to meet my required fields, some of then will be optional others are not.
2- Profile # They can edit their own profile. Profile should look like this ( http://www.acervoindustrial.com.br/PHM-FERRAMENTARIA-E-USINAGEM.html )
3 - Profile Listing # Here I need to list profiles divided by categories in some page as is in here ( http://www.acervoindustrial.com.br/Fornecedores-Dispositivo-de-Solda.html )
4 - Search and Profiles # Here I need to when people do a search in the search form the search finds profiles related to the term it has searched to.
I thinks if any of you guys could advice me about how to achieve this I would be glad.
Thanks
Felipemiranda.tk
Comments
In Drupal 7 you can add
In Drupal 7 you can add fields to the user object, they can be required or not and you can choose which ones you want to show on registration. You can use views to list information about the users.
You can try content types...
What i'm seeing is that you can define a content type "Industrie", with custom CCK fields. You can give permissions to each user to edit it own content once added, that would be his industrie profile. The page listing profiles can be achieved using views, just defining a new one for show content of the type you've created. The search is on the menu by default, Drupal will index all the content for the users, they just have to search as usual.