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 / PageBuilder_saveContent.php
Last active March 9, 2019 22:05
Saves a copy of PageBuilder values in content field of the site_content table. Useful for search or filtering with other snippets.
<?php
// PageBuilder_saveContent
// Saves a copy of PageBuilder values in content field of the site_content table.
// Event: OnDocFormSave
// https://gist.github.com/pmfx/fcb50c22cb83aa29c63986ce88c7db3f
$e = &$modx->Event;
if ( $e->name == "OnDocFormSave" ) {