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

fields arrangement

Hi all!
I am works with drupal forms on this week and naturally I have a question. How to arrange form element(4 example fields) in the same string? , I mean in the same level. I want to enter the ip adress, so i need 4 fields in the same frame.
Can anybody help me? I need same example.
Thanks)

E-Commerce Help needed!

hi all,

For the project which i am working we need to have 'price' as well 'qty' fields as user selectable from a dropdown menu. also we need to have shippable property for these items too. It should have some random no generation logic also.
How do i achieve all these functionalities?
Guys i am stuck here from long time & i am unable to figure out a soln to this - can you all suggest some way for me to get all these functionalities at one place?
when i am making the item as shippable the price field is becoming static. How do i do this?

Using Bookreview module

I'm not sure that I'm really making the most of the book review module.

I can't see the benefit of an Author field if it does not link to other books by the same author. So, at the moment, I'm adding the information into taxonomy and using tagadelic to display the authors in a list.

Is there not actually a way to list all authors, etc, or otherwise customise the bookreview module?

How can I clear menu cache when updating module settings?

I have created a small module (which I'll call "mymodule" here, names changed to protect the innocent) which shows a custom page. In this simplified example of what I'm attempting to accomplish, once the module is installed and enabled, a new "My Module Page" link shows up on the Navigation menu, and when it's clicked, a page is displayed with some dynamically-generated content, with "My Module Page" as the page header. But in the settings of my module, I allow the site admin to change the title of this page. How? Here is the hook_menu code for my module:

function mymodule_menu($may_cache) {
	$items = array();
	if ($may_cache) {
		$items[] = array(
			'path' => 'mymodule',
			'title' => variable_get('mymodule_title_of_page', t('My Module Page')),
			'access' => user_access('access content'),
			'callback' => 'show_mymodule_page'
		);
		$items[] = array(
			'path' => 'admin/settings/mymodule',
			'title' => t('My Module Settings'),
			'description' => t('Settings for My Module.'),
			'callback' => 'drupal_get_form',
			'callback arguments' => array('mymodule_admin_settings'),
			'access' => user_access('administer site configuration'),
			'type' => MENU_NORMAL_ITEM
		);
	}
	return $items;
}

"Out of Office" module - for intranets

Has anyone heard of or worked on a "Out of Office" module for Drupal? This would really only be needed for an Internal company site. What I'm thinking is it would allow site users to tag themselves as out of office when they are 'away on business' or 'out sick'. A corresponding block would appear on the home page and list the folks out of office so other users can see. As for that user coming back, perhaps a status message would show at the top of the user's screen until they click a link to be 'back in office'.

How replace "add to favorites" in favorites module to simple image? thx!

Hello All!
How to replace text "add to favorites" in favorites module to simple image?
Thx to All:)

Pages

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