This forum is for module development and code related questions, not general module support. For general support, use the Post installation forum.

Spreadsheet module

Hey folks,

I'm working on a spreadsheet module, and I'm wondering about a couple of things.

I have tried to create an upload form for my module so users can upload a .csv file (and import it to a spreadsheet node), but mimicking the image upload form doesn't appear to work as desired. There is some subtle thing I am missing about file uploads, so if anyone can give me some advice there, that would be super.

Also what are some features of the spreadsheet that are necessary in order to make this module worthwhile?

Dave

Not possible? How to accomplish " city / area " type relation with taxonomy or category module?

Hello,

I am working on a local review site (like yelp).

For simplicity purposes, lets say I need only 3 fields while adding a review:

1. City - preconfigured drop down list of all cities
2. Area - *free tagging box* where people can add in the name of the area in a city
3. Review Body - detailed review body

So far so good.

However, I would like to create a view of all reviews such that when the user chooses a city, *only the areas of that city* come up dynamically in the area box.

i.e. if user chooses:

City -> "New York"

Handbook

hi

How do I go about building a directory page in drupal? I want to create a way to categorize content in a 2 or 3 level directory structure with the leaf node pointing to the actual content. You can say something like Yahoo home page.

Thanks
drupalian

Execute an action when a comment is submitted

I'm developing a module that gives users some choices after they submit a comment. I think the actions.module is the way to go, but I'm having trouble figuring out how to use it. Could someone explain to me how I might trigger an action when someone submits a comment?

Thanks,

duggoff

Admin settings menu - what's missing?

I feel I'm missing something really obvious here.

Got a small 4.7 module that I'm converting to 5.x. The display stuff (nodeapi) is all working - but I can't get the admin settings to work.

Here's the hook_menu

function geocaching_menu($may_cache) {
  $items = array();

  if ($may_cache) {
    $items[] = array(
      'path' => 'admin/settings/geocaching',
      'title' => t('Geocaching settings'),
      'description' => t('Provide links to geocaching.com from taxonomy'),
      'callback' => 'drupal_get_form',
      'callback arguments' => array('geocaching_settings'),
      'access' => user_access('administer geocaching'),
      'type' => MENU_NORMAL_ITEM,
    );
  }

  return $items;
}

If I call print_r just before the return I can see the array

Array
(
    [0] => Array
        (
            [path] => admin/settings/geocaching
            [title] => Geocaching settings
            [description] => Provide links to geocaching.com from taxonomy
            [callback] => drupal_get_form
            [callback arguments] => Array
                (
                    [0] => geocaching_settings
                )

            [access] => 1
            [type] => 22
        )

)

The permission is defined in hook_perm - but I am testing as the admin user/first user.

Module request: expandable user database system for club site

hi all.

i have been running a club website for a few years now. (http://club.my-kart.org/)

about the club

we are a karting club. we organise regular karting events, with a annual championship tables.

the site

the site is chiefly a community site for the club. all event records are kept on the website. the site enables members to interact with each other. we have paying and non-paying members (different benefits, obviously). i am currently running on 4.7.x and waiting until all 5.x modules are available before upgrading to 5.x - 5.x is running as a test site at http://www.my-kart.org/test/

module request - site needs

i would like to expand the functionality of the site further to do the following:

1) store race records by each member... race qualifying, race points, race positions etc.

2) store race results by race, race series, year

3) member information uploading & listing (tabular)
+ i store members' personal information by implementing the user profile...
++ but not sure how to view them in a tabular format
++ would like to be able to upload member data via csv / delimited text files (or from spreadsheet)

4) member related files
+ would like to upload relevent files, images (more than one) for each member

5) member payment / membership status
+ any possibility of online epayment feature?

Pages

Subscribe with RSS Subscribe to RSS - Module development and code questions