如何使用OsClass中的pre_item_add挂钩更新广告说明?

时间:2017-02-06 09:40:37

标签: osclass

我正在编写一个函数来更改外部链接到我的重定向链接。我使用pre_item_add钩子,但我不知道如何用新的描述更新提交的描述。有谁知道怎么做?

这是我的想法:

function link_process($aItem){
    $desc = $_POST['description'][$language_code];
    Session::newInstance()->_setForm('description' , rewriteExternal($desc));
}
osc_add_hook('pre_item_add', 'link_process');

1 个答案:

答案 0 :(得分:0)

我对here

进行了类似的更改

寻找第8点。在我的解决方案中,但阅读所有答案才能理解。此外,解决方案中还有一个链接指向我的想法。