Skip to content

Instantly share code, notes, and snippets.

View pmfx's full-sized avatar

Piotr Matysiak pmfx

View GitHub Profile
@pmfx
pmfx / ManagerCssContexts.php
Last active March 10, 2019 11:42
Plugin for Evolution CMS. Adds some style to the first level tree elements, to make them stand out more. Usefull when you are using first level documents as "context" folders.
<?php
// ManagerCssContexts
// Add some style too the first level tree elements.
// Event: OnManagerTreePrerender
// Modify $contexts variable for your needs.
$e = & $modx->Event;
if ( $e->name == "OnManagerTreePrerender" ) {
@pmfx
pmfx / ElementsInTree.php
Last active November 19, 2022 15:10
ElementsInTree MODX plugin. Now respecting MODX permisions.
// OnManagerTreePrerender,OnManagerTreeRender
// Autor: Dmi3yy
// Version: 0.2
// 2016-10-11 added category accordion (Nicola1971)
// 2016-10-11 added icons to list elements (Nicola1971)
// 2016-10-10 added live search/filtering (pmfx)
// 2016-10-06 added configuration option to use icons or not (pmfx)
// 2016-10-05 tabs have icons instead of text shortcut now (pmfx)
// 2016-10-01 modified by Piotr Matysiak (pmfx) to respect MODX roles (hasPermission)