custom

We encourage users to post events happening in the community to the community events group on https://www.drupal.org.
JMeyer's picture

Experienced Senior Developer for Music Startup

Senior Developer - Join our team

Full-Time competitive salary plus equity options
United Kingdom
London or Norwich or remote working

SupaPass

Join our groundbreaking Music-Tech Startup which has been receiving international recognition for its disruptive solution for the entertainment industry. “Best European Startup 2014” SXSW Hatch.

We are looking for a highly motivated individual, passionate about cutting edge technology, with the drive to lead our tech team and steer our innovative product forward in this exciting new market space.

Read more
Chris87's picture

Rest Service path

Hi,
I have been playing with the Services module for a couple of days. According to REST API best practices, the GET URL paths I want to use are:
/buildings
/buildings/4
/buildings/4/rooms
/buildings/4/rooms/5

'Building' and 'room' are both content types, and '4' and '5', the node-ids.

Using the Services module, I can create the following calls:
/node/type=building
/node/4

And with the Services Views module, I can customise the path a little more:
/buildings

But the only way to get a specific building is by:
/buildings?nid=4

Read more
teplitz's picture

Help finishing up a church Drupal-based site

Our new church website is 85% ready to go live. Our Drupal developer finished the initial development and has left us in the troubleshooting stage. Since he has decided to move on and not complete the project, we are in big trouble. None of us are Drupal programmers. I am the designer. I know a moderate amount of Joomla, Wordpress, Magento and Expression Engine but I am not fluent in Drupal. In order to create a plan to move forward, we need someone to analyze the state of the development.

Read more
robj85's picture

Using menu_block module with OP?

Today I installed a rather popular module called menu_block http://drupal.org/project/menu_block but haven't had any luck getting this configured to accomplish a multi-tiered menu. I heard this module will eventually be added to the core of Drupal 8, but the OP project probably won't have a build for 8 anytime soon.

Read more
danielw's picture

Action: Display Image?

I'm trying to display an image as part of an Action.
Is my best bet to use Execute Custom PHP Code, and then do something like this:

<?php
$imagepath
="phpimages/dog.jpg";

$image=imagecreatefromjpeg($imagepath);

header('Content-Type: image/jpeg');

imagejpeg($image);
?>

Thanks!

Read more
burt.lo's picture

October 2010 SDDUG presentation videos

These were last minute recordings, so pardon the low production values. Hopefully the audio and video are clear enough to get some value from these terrific presentations. Feel free to respond with constructive comments; I'll do my best to improve over time.

http://vimeo.com/user3982913/videos

Feel free to share these with others.

Read more
marcus_gbs's picture

Enhancing Nagios to monitor Drupal using Drush commands

Are you using or thinking about using Nagios to do system monitoring and are curious at options for monitoring information about your drupal site? Consider using drush to create the custom commands in Nagios.

For more details see: http://www.guidelightsolutions.com/blog/enhancing-nagios-monitor-drupal-...

Read more
DrupalCuckoo's picture

Call hook_node_access_records() from custom function

hi,

usually the hook "hook_node_access_records($node)" gets called when you hit the save-button on the edit page of a node. I need to call this function outside the edit-form.

I'm building a custom content-privacy module and I need to call this function for all existing nodes filtered by content-type (for example all blog nodes).

The problem I have is that this hook needs a node-object as a parameter. When being on a node-edit page (node/[NID]/edit) this object will be available. But when I don't edit a node I have no node-object available.

Read more
jcicolani's picture

Troubles with Custom Theme using 960Grids Base Theme

I am trying to build a custom theme for my much discussed photo workshop site using the 960 Grid base theme. I get it running all right, except one small problem. None of my blocks are displaying. In their place I get "1" or "0". The regions seem to work right, properly sized, etc., but the blocks aren't showing.

Here is my theme.info file:


name = Vandivier
description = 960 Grid Subtheme
version = VERSION

core = 6.x
base theme = ninesixty
engine = phptemplate

stylesheets[all][] = reset.css
stylesheets[all][] = 960.css
stylesheets[all][] = styles.css

Read more
DrupalCuckoo's picture

Menu in custom module disappears

Hi Guys,

I'm developing a custom module for some privacy stuff. My module provides a new page under "user/[UID]/edit/privacy".

<?php
/**
* Implementation of hook_menu()
*/
function MY_MODULE_menu() {

$items['user/%user/edit/privacy'] = array(
'title' => 'Privacy',
'page callback' => 'drupal_get_form',
'page arguments' => array('MY_MODULE_privacy_settings'),
'access arguments' => array('administer site configuration'),
'type' => MENU_LOCAL_TASK,
'weight' => 100,
'file' => 'MY_MODULE_privacy.admin.inc'

Read more
Subscribe with RSS Syndicate content