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

KIcking off Actions

I'm trying to figure out how to kick off actions directly from the screen where
you view details about a node. At present, I've ony been able to kick off an action by changing
a workflow state. Does anyone know how else to kick off Actions?

I'm also looking to kick off an action at the creation time of a node. Does anyone
know how to do this?

Thanks,
Darrell

Alfresco Integration

Has anyone integrated Drupal with Alfresco document management?

Project Management Module - Does Drupal have one?

Does Drupal have a Project Management module?
I'm new to Drupal and I have hard time finding modules on drupal site. Drupal is missing module search and the categories are too broad. Anyway, I am looking for the PM tool and wonder if Drupal has one? If it has one I would like to try Drupal for intranet at our company.
(Does Drupal have enough goodies for Intranet - like PMS, DMS...?)

Any help is greatly appreciated,
Lechu

Flexinode Installation Help!!!

I'm having difficulty installing Flexinode. I downloaded the most recent version, uploaded in the module directory onto the server and when I got to the site to enable the module, it's not there. Am I missing a step????

Please help!!

CH

$termshow->vid not working correctly.

I have a code like so.

function tutorial_type() {

$output = '';

$select_types = db_query("SELECT vid, name, description FROM {vocabulary} ORDER BY weight DESC");
while ($termshow = db_fetch_object($select_types)) {

$newid = $termshow->vid;

echo $newid;

$output .= 'vid.'">'.$termshow->name.' [0]
'.$termshow->description.'
';

$result = db_query("SELECT tid, name FROM {term_data} WHERE tid=$newid");
while ($term = db_fetch_object($result)) {

Attachment module extensions

Hi all.

I'm working to develop an extension to the attachment module: I have to display some extra information about the uploaded file, namely what type of file it is, with which player or program you can open it, and who uploaded it.

I managed to add these information to the MySQL table (which I called attachment_ext).

The problem is that I cannot retrieve those data: it does not display those information.

Can anybody help me, please? I don't have a clue how to do that.

If it could help, I'll paste here my code for the module (which is basically just an extension of the original attachment module):


<?php
// $Id: attachment.module,v 1.15.2.2 2006/09/28 09:53:13 robertDouglass Exp $

define(ATTACHMENT_EXTENSION_WHITELIST, variable_get('attachment_text_rename_whitelist', 'jpg jpeg gif png tiff txt html doc xls pdf ppt pps odt mp3 ogg wav wmv mpg'));

function attachment_form_alter($form_id, &$form) {
$type = $form['type']['#value'];

switch ($form_id) {
// node edit form
case $type .'_node_form':
if (user_access('add attachments') && (variable_get('attachment_node_'. $type, 0) == 1)) {
$node = $form['#node'];
if (!isset($node->attachments)) {
$ret = attachment_load($node);
$node->attachments = $ret['attachments'];
}

Pages

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