I think my approach may be off, but this seems like a common need, so i'm hoping i'm not too far off. Any input is appreciated. When the 'publish/unpublish' button is clicked, i'd like to read 'getTask()' and take my own actions, after the core's 'publish' method completes. Here's where I start:
In the controller, in my own 'publish' method i call parent::publish. So far no problem. Then I want to read getTask and pass it to the model function.
CONTROLLER_CLASS extends jCONTROLLER_ADMIN
public function publish()
{
parent::publish();
$model = $this->getModel();
$myPublish = $this->getTask();
$model->modelVariable = $myPublish;
//or
$model->doCustomPublishWork();
}