See the Mailing lists or Drupal Issue queue. There are also various working groups on groups.drupal.org

Block example from documentation does not work

I have written a new module called npuser for drupal 6.0 and wanted to add a block.

As a first step I copied the block example from the documentation into my code. I only changed the name of the module (to npuser), see below. The module is activated and works but the block does not appear under admin/build/block!

<?php
function npuser_block($op = 'list', $delta = 0, $edit = array()) {
// The $op parameter determines what piece of information is being requested.
switch ($op) {
case 'list':
// If $op is "list", we just need to return a list of block descriptions.
// This is used to provide a list of possible blocks to the administrator,
// end users will not see these descriptions.
$blocks[0] = array(
'info' => t('Example: configurable text string'),
);
// A block can provide default settings. In this case we'll enable the
// block and make it visible only on the 'node/*' pages.
$blocks[1] = array(
'info' => t('Example: empty block'),
'status' => TRUE,
'weight' => 0,
'visibility' => 1,
'pages' => 'node/*',
);
return $blocks;
case 'configure':
// If $op is "configure", we need to provide the administrator with a

Add a link to a module from the main body of the menu page

Hello!

I rewrote module for Drupal 6.x that extend functionality of core Drupal menu. Is it possible to add a link to it from the main body of the menu page (I mean here admin/build/menu)?

Regards

Question about "minimun cache lifetime" setting

Hello,

I'm a bit confused about "minimun cache lifetime" setting in drupal section "Administer / Site configuration / performance / page cache".

Should I use the setting "minimun cache lifetime" only if I have set the Caching mode as Aggressive?

Or in other way around, do I have to set some value "minimun cache lifetime" if I'm using Normal caching mode? Just wondering what enhancements would any caching mode offer, if there is no "minimun cache lifetime" defined?

Best regards, Harri

Suggestion for stricter dependecies check

Hello.

I using Drupal for several projects, use 5.x core for projects that were started earlier and 6.x for new projects.

Several times we had problem with dependencies check while deployment - I added some functionality to old module and created new module that depends on old one, but uploaded only new one to the server and everything went wrong.

The problem were in dependencies check - modules installer in Drupal checked that old module already installed and let me install new one.

status messages of contact module not displayed while logged in as anonymous user

when "send email" is clicked in the contact module:

status messages like "the message has been sent" is displayed while logged in as administrator

such status messages are not displayed while logged in as anonymous user

code excerpt from "page.tpl.php" which prints messages:

/*************************************/

if ($messages):
print $messages;
endif;

/***********************************/

How to fetch RSS feeds with different topics ?

Hello to all drupllars I want to know how can we fetch RSS feeds and store them in the database as node but under the diffrent category chosen by Us.For example If I have category sports,holiday then I want to fetch RSS FEEDS under these category like node/category_name/RSS_FEED_DATA_ID......Can anybody help me out on this issue

Pages

Subscribe with RSS Subscribe to RSS - Deprecated - Drupal core