Skip to content

Instantly share code, notes, and snippets.

@prometeusweb
prometeusweb / FileDownloadController.php
Last active May 12, 2022 09:40
[Encrypt / Decrypt strings from twig or php] Encrypt or decrypt a string #craft #encrypt #encryption #decrypt #twig #php
<?php
namespace brilliance\cpxcustomfeatures\controllers;
use Craft;
use craft\elements\Asset;
use craft\web\Controller;
class FileDownloadController extends Controller
{
@prometeusweb
prometeusweb / readme.md
Last active February 17, 2019 18:43
Toggle library with collapse effect

Collapse library with height animation

Instructions

Add attributes data-toggle="collapse" and data-target="theTargetId" to the element that acts as collapse toggle

Eg:

<a href="#" data-toggle="collapse" data-target="collapseThis">Collapse</a>
@prometeusweb
prometeusweb / error_reporting.php
Last active November 19, 2017 08:12
[enable error reporting] Enable error reporting in scripts
<?php
error_reporting(-1);
ini_set('display_errors', 'On');