每当更改插件参数并在Joomla中单击保存按钮时,我想处理脚本。我不想每次都运行它,但是一旦按下保存按钮,脚本应该执行,然后应该处于休眠状态,直到再次调用它为止
答案 0 :(得分:0)
我认为你可以使用这些事件中的任何一个(来自com_plugins/models/plugin.php
)
/**
* @var string The event to trigger after saving the data.
* @since 1.6
*/
protected $event_after_save = 'onExtensionAfterSave';
/**
* @var string The event to trigger after before the data.
* @since 1.6
*/
protected $event_before_save = 'onExtensionBeforeSave';
如果你看一下用Joomla安装的基础/核心插件!在/plugins/
中,您可以找到使用这些和其他触发器的示例。