drupal

Make drupal accessible via webservice

Did I mention that drupal is great??

Needed to provide webservices to a drupal page. Look at this hillaryous module:

http://drupal.org/project/services

Some helpful sites to help implementing the services:

General overview: http://drupal.org/node/783254
Tutorials and examples: http://drupal.org/node/113697
Nice php-class with example: http://drupal.org/node/1070066
Creating a node: http://drupal.org/node/1354202

Other helpful links:
http://www.barnettech.com/content/drupal-7-create-user-using-rest-and-curl

geany learns drupal .. yay!

Geany now is able to recognize drupal core functions.
It helps a lot if the function helper shows up while typing.

How to:
http://www.mcdruid.co.uk/content/using-geany-as-an-editor-for-drupal-dev...

Create a drupal-node by module

I recently had to implement functionality for a module to automatically import nodes from a XML-file of a foreign system. With this pages as references it turned out to be surprisingly easy:

http://drupal.org/node/1388922
http://drupal.org/node/201594

Drupal 7 - Theme node (full, teaser)

print drupal_render(node_view(node_load(43), 'teaser'));

Drupal Globals

Finde it well documented here:

http://api.drupal.org/api/drupal/globals

Mailjet - logging and analysing email traffic (from website)

Logging and analysing email traffic from your website.
Sounds promising:

http://www.mailjet.com/

Drupal 7 and imagecache / image style

Sapperlot, always these changes..... :)

theme('image_style', array('style_name' => 'slider_content', 'path' => 'image path', 'alt' => 'image alt', 'title' => 'image title', 'width' => 'some width', 'height' => 'some height')));

http://www.victheme.com/blog/drupal-7-themeimagecache-replacement

Tabs von page in node (.tpl.php) verschieben

How to move the beloved node-tabs (view, edit, etc.) from the page.tpl.php in the node.tpl.php:

http://drupal.org/node/780010#comment-2884126

May be it's helpful to use this in the node.tpl.php:

        <?php if ($tabs): print '<div id="tabs-wrapper">' . $tabs .'</div>'; endif; ?>
 

Too Cool for Internet Explorer