Spamworldpro Mini Shell
Spamworldpro


Server : Apache
System : Linux indy02.toastserver.com 3.10.0-962.3.2.lve1.5.85.el7.x86_64 #1 SMP Thu Apr 18 15:18:36 UTC 2024 x86_64
User : palandch ( 1163)
PHP Version : 7.1.33
Disable Function : NONE
Directory :  /home/palandch/www/core/model/modx/processors/element/plugin/event/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/palandch/www/core/model/modx/processors/element/plugin/event/associate.php
<?php
/**
 * @package modx
 * @subpackage processors.element.plugin.event
 */
if (!$modx->hasPermission('save_plugin')) return $modx->error->failure($modx->lexicon('permission_denied'));
$modx->lexicon->load('plugin','system_events');

/* get event */
if (empty($scriptProperties['name'])) return $modx->error->failure($modx->lexicon('plugin_event_err_ns'));
$event = $modx->getObject('modEvent',array('name' => $scriptProperties['name']));
if ($event == null) return $modx->error->failure($modx->lexicon('plugin_event_err_nf'));

/* get plugins */
$plugins = $modx->fromJSON($scriptProperties['plugins']);

$eventName = $event->get('name');

foreach ($plugins as $pluginArray) {
    $pluginEvent = $modx->getObject('modPluginEvent',array(
        'event' => $eventName,
        'pluginid' => $pluginArray['id'],
    ));
    if (!empty($pluginEvent)) {
        $pluginEvent->remove();
    }
    $pluginEvent = $modx->newObject('modPluginEvent');
    $pluginEvent->set('event',$eventName);
    $pluginEvent->set('pluginid',$pluginArray['id']);
    $priority = (!empty($pluginArray['priority']) ? $pluginArray['priority'] : 0);
    $pluginEvent->set('priority',(int)$priority);
    $pluginEvent->set('propertyset',(int)(!empty($pluginArray['propertyset']) ? $pluginArray['propertyset'] : 0));

    if (!$pluginEvent->save()) {
        return $modx->error->failure($modx->lexicon('plugin_event_err_save').print_r($pluginEvent->toArray(),true));
    }
}

return $modx->error->success();

Spamworldpro Mini