プラグインオプションの更新後。 グローバル/ブログ/カテゴリ/アイテム/メンバーの各呼び出し元によって渡される内容は違ってくる
グローバルオプションの変更後
ADMIN.php 6488行目
$manager->notify('PostPluginOptionsUpdate',array('context' => 'global', 'plugid' => $pid));
ブログオプションの変更後
ADMIN.php 3127行目
$manager->notify('PostPluginOptionsUpdate',array('context' => 'blog', 'blogid' => $blogid, 'blog' => &$blog));
カテゴリオプションの変更後
ADMIN.php 2866行目
$manager->notify('PostPluginOptionsUpdate',array('context' => 'category', 'catid' => $catid));
メンバーオプションの変更後
ADMIN.php 2112行目
$manager->notify('PostPluginOptionsUpdate',array('context' => 'member', 'memberid' => $memberid, 'member' => &$mem));
アイテムオプションの変更後
ITEM.php 167行目
$manager->notify('PostPluginOptionsUpdate',array('context' => 'item', 'itemid' => $itemid, 'item' => array('title' => $i_title, 'body' => $i_body, 'more' => $i_more, 'closed' => $i_closed, 'catid' => $i_catid)));
ITEM.php 276行目
$manager->notify('PostPluginOptionsUpdate',array('context' => 'item', 'itemid' => $itemid, 'item' => array('title' => $title, 'body' => $body, 'more' => $more, 'closed' => $closed, 'catid' => $catid)));
自動ドラフト保存の時(未実装)
ITEM.php 276行目
//$manager->notify('PostPluginOptionsUpdate',array('context' => 'item', 'itemid' => $itemid, 'item' => array('title' => $i_title, 'body' => $i_body, 'more' => $i_more, 'closed' => $i_closed, 'catid' => $i_catid)));