Jump to main content Jump to doc navigation

Event: OnBeforePluginFormSave

Fires after a form is submitted but before a Plugin is saved in the manager.

  • Service: 1 - Parser Service Events
  • Group: Plugin

Event Parameters

Name Description
mode Either 'upd' or 'new', depending on the circumstance.
plugin A reference to the modPlugin object.
id The ID of the plugin. Will be 0 for new plugins.

Examples of

Such a plugin displays a message stating that the field is not filled description:

<?php
$eventName = $modx->event->name;
switch($eventName) {
    case 'OnBeforePluginFormSave':
        if (!$plugin->get('description')){
            $modx->event->output("You haven't forgotten your head at home, but you forgot about the description! =)");
        }
        break;
}

Such a plugin will prevent the user from creating new plugins with id=1:

<?php
$eventName = $modx->event->name;
switch($eventName) {
    case 'OnBeforePluginFormSave':
        // if it's a new plugin
        if ($mode == modSystemEvent::MODE_NEW){
            if ($modx->user->get('id') == 1){
                $modx->event->output("You are not allowed to create new plugins!");
            }
        }
        break;
}

See Also

Support the team building MODX with a monthly donation.

The budget raised through OpenCollective is transparent, including payouts, and any contributor can apply to be paid for their work on MODX.

Backers

  • modmore
  • STERC
  • Jens Wittmann – Gestaltung & Entwicklung
  • Fabian Christen
  • Digital Penguin
  • Dannevang Digital
  • Sepia River Studios
  • CrewMark
  • Chris Fickling
  • deJaya
  • Following Sea
  • Anton Tarasov
  • eydolan
  • Raffy
  • Lefthandmedia
  • Murray Wood
  • Snow Creative
  • Nick Clark
  • Helen
  • JT Skaggs
  • krisznet
  • YJ
  • Yanni
  • Richard

Budget

$366 per month—let's make that $500!

Learn more