Skip to content

Instantly share code, notes, and snippets.

View aeberhard's full-sized avatar
🤘

Andreas Eberhard aeberhard

🤘
View GitHub Profile
@aeberhard
aeberhard / _XAMPP mit mehreren PHP-Versionen.md
Last active December 29, 2022 21:58
XAMPP mit mehreren PHP-Versionen (Windows)

Files:

File Description Destination
cert.conf Configuratin for SSL Certificate D:\xampp\apache\cert.conf
makecert.bat Create SSL Certificate D:\xampp\apache\makecert.bat
php74.ini php.ini for PHP 7.4.x D:\xampp\php\php.ini
php80.ini php.ini for PHP 8.0.x D:\xampp\php80\php.ini
php81.ini php.ini for PHP 8.1.x D:\xampp\php81\php.ini
php82.ini php.ini for PHP 8.2.x D:\xampp\php82\php.ini
@aeberhard
aeberhard / modul_input.php
Created October 7, 2022 12:14
Magazin-Layout REDAXO 4
<?php
/**
* --------------------------------------------------------------------
*
* Modul-Input: magazin_Layout, Ausgabe von Bildern im Magazin-Layout
* Version: 1.8, 15.10.2010
*
* Autor: Andreas Eberhard, andreas.eberhard@gmail.com
* http://rex.andreaseberhard.de
*
@aeberhard
aeberhard / gist:c0bd05d7dd13a493f67c4e0c3b06fe8a
Last active April 6, 2020 19:41
Beispiele rex_list setColumnFormat
<?php
// Spalte Anrede anpassen
// In der Tabelle wird 1 für Herr und 2 für Frau abgespeichert und würde auch so angezeigt werden
// Hier wird die Anzeige der Spalte entsprechend dem Feldinhalt angepasst
$list->setColumnFormat('anrede', 'custom', static function ($params) {
$list = $params['list']; // $list enthält ein SQL-Objekt mit allen Felder aus dem DB-Select
$str = (1 == $list->getValue('anrede')) ? 'Herr' : 'Frau';
return $str;
});