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

Module: basic testimonials module created....

Hey anyone-who-cares,

I just finished a basic testimonials module today (for 4.6/HEAD) which allows users to leave testimonials for other users and receive them as well. Not as complex as some of the boys (#drupal) want, but it was all we needed for our requirements. If people want more complexity, I'll be glad to donate some time to get it beefed up to something more powerful.

Please visit my blog to download.

Licensing Question

Hello,

I have a question and I hope someone can shed some light on this topic. I am currently developing a site using the Drupal software. I found an article on the site that states:

"Drupal itself is under the GPL, and all modules, themes, translations, etc. that are hosted here on Drupal.org are also under the GPL."

HTMLArea discontinued, next steps for WYSIWYG editing in Drupal

I just found out today that main development by the original authors of HTMLArea has been discontinued. See the bottom of the Dynarch project page for some more details, reproduced here:

Update, March 8 2005. Some time ago, InteractiveTools expressed the will to take over the project. We provided some fixes that we made and were not in the CVS version and a RC2 was released at htmlarea.com; however, soon thereafter InteractiveTools announced the project closed and forums discontinued. Bang!

Our position on this is that the editor will keep going; we are actually making quite some progress in its development, but only in house at this time. We are still planning to release version 3.0, quite possible under a different name (so it might actually be a 1.0) but still free, at least for the core editor--some plugins might be released under a commercial license. We can't provide explicit deadlines, so please bear with us.

Hello Worst in first Page

Hello,

I try to learn drupal module developpment. I want to make an "hello world" module. It's ok with block and ona page but only in a path. But i can't make it working on the first page. any help would be welcome.

thank you

/**
* Display help and module information
* @param section which section of the site we're displaying help
* @return help text for section
*/
function mfm_help($section) {
switch ($section) {
case 'admin/modules#description':
$output = t("This is My First Module Test. Base for an empty begenning. Output Hello World.)");
case 'admin/settings/mfm':
return t("You can set here the value for the My first Module");

break;
}

return $output;
}

/**
* Valid permissions for this module
* @return array An array of valid permissions for the onthisdate module
*/
function mfm_perm() {
return array('access content','admin mfm');
} // function onthisdate_perm()

/**
* Generate HTML for the mfm block
* @param $op What kind of information to retrieve about the block or blocks. Possible values:
* 'list': A list of all blocks defined by the module.
* 'configure': A configuration form.
* 'save': Save the configuration options.
* 'view': Information about a particular block.
* @param $delta Which block to return (not applicable if $op is 'list').
* @param $edit If $op is 'save', the submitted form data from the configuration form.

Updated aggregator.module for Drupal v4.5.x (Please Test)

All,

I have made some changes to the aggregator.module so that news feed items expire at a configurable time. I have it working in two places and need some folks to test it out.

The code can be found at http://www.jasonn.com/aggregatorx_released

I would like to commit this to the v4.5.x and v4.6.x core once tested and approved.

hide a menu, without restricting the permissions on it

HI I want to hide the register menu item of the user.module through a different module:

Specifically I want to hide user/register:

Pages

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