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

htmlarea changes image paths

like if I write an image tag with an absolute url, it changes it to a relative url automatically, how can I turn this off? what file in the module can I hack?

thanks!
FJ

Simple Access

Will Simple Access be ported to 5.x?

Node privacy by role not working

I had tried simple access, but it wasn't quite what I was after. So, I installed node_privacy_by_role, but it's having no effect at all.

Is this a known problem, or am I leaving something out?

new module: nodeblock

I created a little module that defines a new content type called 'nodeblock'. When you add a nodeblock node its title will show up on the Blocks page. From here you can enable the block and do whatever you want with it.

Although this achieves the same effect as creating a block and putting something in the body, the beauty is that you don't have to give your clients or lower-level users access to the ugly admin/block page. Also you have more power with a node than with a block.

The last thing it does is add an 'edit' link inside the block (if you have the correct permissions)... which is very convenient for end users. After editing, they will be sent back to the referring page.

If you like the module or are interested in it maybe I'll see if I can get it into CVS and on the modules page.

<?php

// $Id: nodeblock.module,v 0.1 2006/11/06 00:00:00 chud Exp $

function nodeblock_help($section) {
switch ($section) {
case 'admin/modules#description':
// This description is shown in the listing at admin/modules.
return t('A custom node type that can be enabled as a block.');
case 'node/add#nodeblock':
// This description shows up when users click "create content."
return t('A custom node type that can be enabled as a block.');
}
}

function nodeblock_node_info() {
return array('nodeblock' => array('name' => t('nodeblock'), 'base' => 'nodeblock'));

User's demo reel on profile page

I am trying to create a module that will display a demo reel on their profile page but I cannot seem to display the content. I would like to use either IMCE or a simple upload box to allow users the ability to upload the demo reel and change it if needed.

These can be mp3, mov, mpeg, or flv.

Any help would be appreciated.

Gmap Location

I have gmap and location modules, what I would like to do is have the link on the default location map go to another map that shows just the node zoomed with detailed description below. I think I will need to modify the CKK, but I am not sure how to tackle this.

Thanks Trav

Pages

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