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

Pay for module

What would it cost to have someone develop me a module? I'm needing a module like http://www.remository.com/ (its a module for joomla) but with a few added features.

Why can't I view the nodes of this module?

I'm making my first node module, but when I fill in the fields and press "submit", I see no content created?
could someone look at my code and tell me if I'm doing something wrong?

Any help would be most appreciated!

<?php

/**
* @file
* Enables users to submit space share tasks.
*/

/**
* Implementation of hook_help().
*/
function sstask_help($section) {
switch ($section) {
case 'admin/modules#description':
return t('Enables the creation of spaceshare tasks.');
case 'node/add#sstask':
return t('Create a spaceshare task.');
}
}

/**
* Implementation of hook_node_name().
*/
function sstask_node_name($node) {
return t('spaceshare task');
}

/**
* Implementation of hook_perm().
*/
function sstask_perm() {
return array('create spaceshare tasks', 'edit own spaceshare tasks');
}

/**
* Implementation of hook_access().
*/
function sstask_access($op, $node) {
global $user;

if ($op == 'create') {
return user_access('create spaceshare tasks');
}

if ($op == 'update' || $op == 'delete') {
if (user_access('edit own spaceshare tasks') && ($user->uid == $node->uid)) {
return TRUE;
}
}
}

/**
* Implementation of hook_menu().
*/
function sstask_menu($may_cache) {
$items = array();

if ($may_cache) {
$items[] = array('path' => 'node/add/sstask', 'title' => t('spaceshare task'),'access' => user_access('create spaceshare tasks'));

module flexinode 4.7.0

The donwload file is empty, in the zip ther's only license txt file.

drupal 4.7 email to page

--> mobile, mailhandlers on planet drupal....

Installed 4.7 beta5 on tiger with php5 mysql5 apache2

blogapi module active, set for page.
setup my mobilephone to > flickr, and flickr to > blog - my drupal 4.7 (blogger api, endpoint: xmlrpc.php)
it does not show up on my drupal 4.7 page as set.
but i can moblog to other blogs via flickr.

is there NO mailhandler, email-to-blog-with attachment module for drupal 4.7 in 2006? or, what am i missing?

trying to build a bluetooth mobile public interface to a drupal 4.7 cms with mobile phone joystick navigation and image/text email-to-node functionality. also vodcasting planned as done in 2005 with drupal 4.6.5 on a debian php4 mysql4.

IS DRUPAL 4.7 JUST NOT FIT FOR STRAIGHFORWARD EMAIL-WITH-ATTACHMENTS TO PAGE NODES IN MARCH 2006?
(Caps above only so the text stands out, not shouting.)
i had hoped drupal 4.7 modules would arrive on drupal.org around the vancouver conference.

please advise if i made a mistake going with drupal 4.7. i dig drupal. i recommended it to my german colleagues at the media museum, however, they look funny at me now and wonder if this is gonna fly? where is the functionality. we hve a lot to build on top, and a lot of editorial underneath.

i start to worry about my choice of drupal 4.7 beta 5?
already 60 nodes on 'space art' up on my server, lots of tagging, profiles, content. worried about losing that IF i backtrack to drupal 4.6? and then with 4.6.6. what with php5 mysql5?

howto conversion rsvp's mail from UTF-8 to gb2312

We want to rsvp can send gb2312 character set mail.
for user_module, I can insert following command:
$mail =aractericonv('UTF-8','GB2312',$mail);
......

but for rsvp, I don't know how to conversion it? Please help me.

Event block borken, anyone seen this before?

I'm talking about this:

http://www.squarefour.org/node/150

Note that the date begins and ends on April 21, but the event block displays this as April 22. I found if I back the start time to before 6PM on April 21 then the date correctly displays in the block. I don't have any idea how I can fix this...

Thanks for your help!

Sean

Pages

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