drupal-module

drupal Generate a PDF catalog from a bunch of nodes

i have to generate the pdf file with bunch of nodes, i can generate pdf files with print pdf modules but i want to generate the i m using views bulk operations i want to generate the pdf files with all the selected nodes. any one knows how to do this stuff ...

Create a view that displays node count?

Hi, Having trouble in views creating what seems like a very simple query. Display the number (count) of nodes of a given type. I'm not finding the option in any obvious place... How to? ...

Exposing a module's data to Views2 using its API

I'm forking the filefield_stats module to provide it with the ability of exposing data into the Views module via the API. The filefield_stats schema is as follow: function filefield_stats_schema() { $schema['filefield_stats'] = array( 'fields' => array( 'fid' => array('type' => 'int', 'unsigned' => TRUE, 'not nul...

drupal Can we write a rule to send email to the customers on particular date

i have calendar module each user can create his schedules,meetings. now i want to send emails to the user before one hour( or one day before) of their schedule meetings... is that possible in drupal i thought of working with rules but not sure that will work any ideas guys please ...

Drupal nested subform

I'm working on a directory service using Drupal where each place has more than one branch, I need to create the content type (branches) and be able to add branches using the same form of adding a directory item. Is there a module that helps me in doing is (if it's Ajax that would be excellent). ...

More required for Selling Videos, E-book, Softwares using Drupal 6x

Is there any module which can be used with Drupal 6.x for adding E-commerce especially to sell things like video, audio, e-books. There is one old module for Drupal 5.x called Quickfile. Is there anything new like this? Or what are modules required to achieve above stuffs. ...

Drupal: hiding the view to display the results?

i m newbie to drupal i have a view which displays the list of cars , i have 2 filters which are exposed make users to search for the car model and price. it works fine, now i want this view to be home page, by default views gives list of all the nodes. i dont want that, the results should display after users presses apply button can a...

drupal problem with creating word document files

i m newbie to drupal presently i m using drupal 6 version i have to generate the word document files for the selected nodes say (/node/166,node/21) we dont have any module to generate word documents or to generate pdf files with group of nodes we can generate pdf file for one object to generate word document file in php will be T...

Extacting contents from excel in Drupal

hi! I want to extract the contents of a excel file and populate them in a new post( page) . I'd like to maintain the row-column relationship. Ex: sample.xls Name | Age | Sex A | 20 | M B | 30 | F C | 40 | M In Drupal (the one which i want) Name | Age | Sex A | 20 | M B | 30 | F C | 40 | M Is there any module in Drupal to d...

Module development tutorial in Drupal

hi! I'd like to learn how to create modules in drupal- modules which can interact with the user, database, assign permissions, views. Is there any good video tutorial or a simple sample module which covers these things? Thanks. ...

To use or not to use the user module

We are currently transitioning our website to Drupal 6.x from a non Drupal source. One of the first issues we need to deal with is that of authentication. We have a central database where we keep member information. We will create a module to authenticate against this database however a question of whether or not to create users in the d...

drupal what if we have designed a content type with existing fields

i have small problem.... i have one content type say cars with various fields, say more than 30 , user can create the content types... now i would like to show only few fields in different phases,is there any possibility to do that. more explantaion:- user may enter the car model and car details in the first page and upload images in sec...

drupal 6 can we write a php file in drupal which changes the headers

i have written a small code which creates a word document but i got the following errors require_once './includes/bootstrap.inc'; drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL); global $user; $fp = fopen("test.doc", 'w+'); $str = "<B>This is the text for the word file created through php programming</B><br>test to create a doc file from ph...

drupal edit attachment field of a node

i have a content type named Properties, users can create the content types i have file cck field in the content type(properties) now i want to add the attachments to the or edit the attachments field only in a block or panel for the particular property, not showing all the fields when user try to edit the content type. i have heard th...

Drupal Batch operation page fails with my theme.

I have created a theme for Drupal, everything works fine, except for the Batch operations page. Even the progess bar is not displayed. Do I need to include any special tags in my theme to make the the Drupal Batch operations work. ...

drupal how to refresh the page when the content is created in the popups

i have designed a panel where i have to used to popup links and automodal class for creation of content.... <a href ="/testviewprintpdf/<?php echo $object; ?> " class ="popups-form-noreload">view objects</a> now after saving the content , and closing the popup the panel page is to be refreshed how it is done..... it sounds simple ...

Drupal 6 node_view empty

I'm trying to produce a page with a list of specific nodes but the node_view returns an empty string. This is my query: function events_upcoming() { $output = ''; $has_events = false; $res = pager_query(db_rewrite_sql("SELECT n.nid, n.created FROM {node} n WHERE n.type = 'events' AND n.status = 1 ORDER BY n.sticky DESC, n.create...

Drupal API: how to load a module dependency from another module

I am attempting to develop a Drupal module that defines the class MyFeedsSyndicationParser. This class extends the class FeedsSyndicationParser from the Feeds module. In my module's .info file the dependency on the Feeds module is identified. When I enable the module the php_error.log contains: PHP Fatal error: Class 'FeedsSyndication...

drupal how to limit the display results of the calendar view

i have a calendar view its working pretty fine,,, but i need to restrict the results to one per date, if i have five events, my view looks odd so thought of adding a more link and displaying only one result per date..... is there any way to this,, i have tried limiting the view to display the results to 1 but it doesn't work ...

How to show recent topics from my phpBB forum in my drupal website?

I have setup a phpBB forum and people are using it. It has a decent level of activity. I have setup a Drupal 6.15 website and I want to show the recent topics from that phpBB forum on this website. Both are separate domain names, if it matters. I've been searching since morning in Google for a module to do that but the results beat ar...