Drupal 7 schema & datetime
When working on db schemas in Drupal it’s good to know that syntax for datetime is somewhat changed. Before it…
When working on db schemas in Drupal it’s good to know that syntax for datetime is somewhat changed. Before it…
Want to add span elements to menu, change ul id or add classes? Need images in menu or some custom…
I have seen a lot of Drupal modules where requiring php files is done like this $module = ‘my_module’; require_once(DRUPAL_ROOT…
In case you need to log errors and other messages in Drupal 7 use may use it’s watchdog function. Same…
Sometimes you really need to add content programmatically and here’s a little sample about the basics. $node = new stdClass();…