Hello Group,
I am newbi to Drupal , I would like to expose a database table into Drupal , views seems to be a viable option to do so but I am not quite sure how, can anyone kindly give me some pointers?
MyTable has three fields (fname, lname,phone) . MyTable exists in a database called myCRMDB which is outside the Drupal database. Finally, my objective is to use a view that will connect to the external database (myCRMDB) and perform a "select * from MyTable" and then view the result in a grid format on a Drupal page.
Hi, I'm not able to bring the image-title up in a view using Replacement Patterns. When I enter it in, it prints the pattern [field_image-title] under each image instead of producing the actual title. Using a PHP template (help from a friend) I was able to see that indeed the titles are there bundled in with each image. The Patterns work for everything else such as image, node Id, etc. But these titles (I want image captions) are a no-go. As an aside- I cannot understand why image captions became so much harder to develop for a non-PHP Drupal user in D7.
Well as the subejct title: Should I use Drupal? for me it isn't easy to choose CMS and mostly because I'm not a web programmer.
I remember once to install Drupal 6 (I found that the installation process was very easy) but I found it hard to use, well everyone would get lost in any new thing!
I have changed my site's url from new.fccjonesboro.org to our actual url fccjonesboeo.org and now when I enter www.fccjonesboro.org/admin" the page does not exist. Also, admin overlay shows and I can edit content but if click anything on the top black bar or "menus, views, blocks, etc." everythign fades out but nothing from admin pops up. Weird. Again, I can edit and add content but I cannot manage the site structure, configuration, advanced help, help, etc. Any ideas? I would hate to have to completely start over.
I am developing a module that defines some entities and then creates some instances of these entities.
Everything seemed to work fine but since the module was starting to grow to much and getting messy I decided to split it in different parts.
The base module with hook_schema() and hook_entity_info() for the entities, hook_install() and hook_uninstall() just for one entity.
Different satellite modules which should just populate the entity tables and add fields, so no hook_schema() or hook_entity_info, just hook_install() and hook_uninstall().