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

Reverse buddy list

(I'm pretty sure think this would be a new module...apologies if I've posted this question in the wrong place...and my apologies if this does exist and i've just missed it...)

I need to make a "reverse buddy list" whereby a user could filter the content they see to NOT include nodes created by someone they've tagged on their "reserve buddy list" list. This module would need to include blocking private messages, browsing and searching nodes, etc. Does the idea border on impossible?

Thoughts, suggestions and out right questioning of my sanity would be much appreciated!

How To: Add "submit (!) to technorat"i and "Add to Netscape" in service link module

i hope this is the right forum...

The "service link" module is great, but it misses two important features:

1) Netscape isn't supported at all

2) For technorati it only has the feature "search on technorati" AND NOT "add to technorati favs"

Quick hack:

Load the service_links.module file and look for "technorati", in the
function service_links_render($node, $nodelink = FALSE)
and replace the appropriate existing technorati section with

---

Missing argument 1 in drupal_get_form

I'm taking my first crack at writing a small module, and I'm getting an error when I try to access my admin settings form. First, here's the relevant code:

/*
 * Implementation of hook_menu()
 */
 function imagelist_menu($may_cache) {
 	$items = array();
 	if ($may_cache) {
		$items[] = array(
			'path' => 'admin/settings/imagelist',
			'title' => 'ImageList settings',
			'description' => t('Settings for the ImageList module.'),
			'callback' => 'drupal_get_form',
			'callback_arguments' => array('imagelist_admin_settings'),
			'access' => user_access('administer imagelist settings')
		);		 		  		
	}
	return $items;
}

/**
 * Define the settings form
 */
function imagelist_admin_settings() {
	$form['imagelist_vocabulary'] = array(
		'#type' => 'select',
		'#title' => 'Select the vocabulary used to categorize photos',
		'#options' => taxonomy_get_vocabularies('image'),
		'#description' => t('Select the name of the vocabulary that will be used to categorize your photos'),
	);
	$form['array_filter'] = array('#type' => 'hidden');
	return system_settings_form($form);
}

And here's the error I get when I try to access the form from the admin settings page:

* warning: Missing argument 1 for drupal_get_form() in C:\Program Files\Apache Software Foundation\Apache2.2\htdocs\flickrcck\includes\form.inc on line 48.

different books | diiferent access | permissions

Hi,

i´ve created different books and different roles.
For example

book1
book2
book3
book4

role1
role2
role3
role4

Now I´m looking for a way to give just role1 the access for book1. Role2 access for book2 and so on.

Do you have any ideas?

Thanks a lot from Germany

Error Parse Please Help me to find

Hello Drupal Team,

I don't know why this Error to come I have all Modules copy in the Module Folder but not Activated.

And now he Show me follow Erro on my Site in the Administration Menu

* warning: Error parsing modules/ec_location/ec_location.info on line 6 in /home/hackerse/public_html/ever4you.de/includes/module.inc on line 195.
* warning: Error parsing modules/ec_location/ec_location.info on line 6 in /home/hackerse/public_html/ever4you.de/includes/module.inc on line 195.

Simplenews - put the subscription page in a block

I have an issue.

I want to put all the newsletters I have in one list with a checkbox infront of them so that users can choose what newsletters they subscribe to.

If I go to "manage my subscriptions" I get exactly that page but I want that page in a block in my sidebar to have it more visible on the website.

I tried the NodeAsBlock solution but it seems that I cannot add the "Newsletter subscriptions" page to a block since it´s not available for editing.

I also experimented with views but was not successfull (not very experienced with views).

Pages

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