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

Global (i.e. site-wide) args

Hi -

Apologies if this is answered elsewhere - the drupal.org search function appears to have been throttled down, and I'm unable to find anything on this when I use google instead. I'm looking to define a global $arg, one that will return a plain old string when called in various views I'm trying to use it in. In essence, I'd like to be able to use the following as the URL path for a page-type View:

news/$arg/announce

BROWSER IMAGE is not showing - tinymce & imce both are properly installed and configured.

hi,

we are using tinymce & imce module for reach-text editor.
we are done with all the features.

but we are not able to viible/missing BROWSER IMAGE.(small img appears in the popup window, while we click to img link)
we already using these modules in our other projects, where they are working correctly.
here also we have installed and configured correctly.

but BROWSER IMAGE is missing/invisible.

please provide the information on these.

BROWSER IMAGE is not showing - tinymce & imce both are properly installed and configured.

hi,

we are using tinymce & imce module for reach-text editor.
we are done with all the features.

but we are not able to viible/missing BROWSER IMAGE.(small img appears in the popup window, while we click to img link)
we already using these modules in our other projects, where they are working correctly.
here also we have installed and configured correctly.

but BROWSER IMAGE is missing/invisible.

please provide the information on these.

Looking for a newsletter module

Can anyone recommend a newsletter module for Drupal that uses smtp to send out and gathers statistics of how many emails have been succesulfully sent, read etc.

I have been experimenting with Simplenews, but have found there is no reporting and have no confirmation of the cron has run correctly or not.

annotate module error

Im new in module development. I tried to use annotate module example from Pro Drupal development book and I have strange error.

I can’t save Annotations per node and other settings. I can’t reset it to default. And I alwaye getting “Please enter a number.” Even if I have set number.

I made output echo “out = ”.$form_values['annotation_limit_per_node'];
But it’s empty

Glad if anybody could point out if I have configured anything wrongly.

Drupal 5.2


/**
* Define the settings form.
*/
function annotate_admin_settings() {
$form['annotate_nodetypes'] = array(
'#type' => 'checkboxes',
'#title' => t('Users may annotate these node types'),
'#options' => node_get_types('names'),
'#default_value' => variable_get('annotate_nodetypes', array('story')),
'#description' => t('A text field will be available on these node types to make user-specific notes.'),
);

$form['annotate_deletion'] = array(
'#type' => 'radios',
'#title' => t('Annotations will be deleted'),
'#description' => t('Select a method for deleting annotations.'),
'#options' => array(
t('Never'),
t('Randomly'),
t('After 30 days')
),
'#default_value' => variable_get('annotate_deletion', 0) // default to Never
);

$form['annotate_limit_per_node'] = array(

hook_form_alter() in Drupal 5.2

Hello,

Pages

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