Skip to content

Instantly share code, notes, and snippets.

@raphaellarrinaga
raphaellarrinaga / worpress_install.md
Last active February 17, 2018 10:29
Wordpress ressources for a VM + composer installation & notes
View git_aliases.md
  lg1 = log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(bold yellow)%d%C(reset)' --all
  lg2 = log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold cyan)%aD%C(reset) %C(bold green)(%ar)%C(reset)%C(bold yellow)%d%C(reset)%n''          %C(white)%s%C(reset) %C(dim white)- %an%C(reset)' --all
@raphaellarrinaga
raphaellarrinaga / settings.php
Last active December 5, 2018 08:58
Drupal 8 development settings file
View settings.php
<?php
/**
* @file
* Drupal site-specific configuration file.
*
* IMPORTANT NOTE:
* This file may have been set to read-only by the Drupal installation program.
* If you make changes to this file, be sure to protect it again after making
* your modifications. Failure to remove write permissions to this file is a
@raphaellarrinaga
raphaellarrinaga / lando_helpers.md
Last active January 9, 2019 08:22
Lando helpers
View lando_helpers.md
@raphaellarrinaga
raphaellarrinaga / drupal_7_php_cheat.md
Last active July 1, 2020 07:42
[Drupal 7 php/config cheatsheet] #tags: drupal7, php, cheatsheet, config
View drupal_7_php_cheat.md

Drupal 7 PHP cheatsheet

Get the NID of the current node

Assuming your code is running for a node page, the methods I see used most often in core/contrib modules are either using menu_get_object() or arg():

if ($node = menu_get_object()) {
  // Get the nid
  $nid = $node->nid;