This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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" ) { | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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" ) { | |
OlderNewer