newpost_complete hook
PHP Code:
$id = $post['id'];
$pagetext = modify(post['pagetext']);
$title = modify(post['title']);
$pagetext = $this->db->escape_string($pagetext);
$title = $this->db->escape_string($title);
$update_query =
"UPDATE " . TABLE_PREFIX . "post
SET
pagetext='{$pagetext}',
title='{$title}'
WHERE postid = '{$id}'";
$this->db->query_write($update_query);
postbit_complete hook
PHP Code:
$id =$post['postid'];
//detect if we are returning after having just submitted a post <--(This is what I'm trying to do)
if(isset($_REQUEST['p']) && $_REQUEST['p']==$id){ //<--(This is how I'm doing it, but I feel this isn't the best way.)
//insert the notification
$template_hook['postbit_messagearea_start'] = //notification html
}