Skip to content

Instantly share code, notes, and snippets.

View TerranRich's full-sized avatar

Richard Brum TerranRich

View GitHub Profile
@TerranRich
TerranRich / PDO_Cheatsheet.php
Last active April 23, 2024 17:18 — forked from hanvari/PDO_Cheatsheet.php
PHP PDO Cheatsheet
<?php
/**
* Reference:
* http://code.tutsplus.com/tutorials/why-you-should-be-using-phps-pdo-for-database-access--net-12059
*/
function connect() {
/**
* No matter what error mode you set,
@TerranRich
TerranRich / drupal-10-cheatsheet.md
Last active March 19, 2024 16:48 — forked from cesarmiquel/drupal-8-cheatsheet.md
Drupal 10 Cheat Sheet

Drupal 10 Cheat Sheet

This was forked from cesarmiquel/drupal-8-cheatsheet.md and udpated to adhere to D10 standards. This is still a work in progress.

Files, Images and Media

Basics:

use Drupal\file\Entity\File;
$variables['node_id'] = \Drupal::routeMatch()->getParameter('node')->Id();