Of course, just copy the template files from the cache to the appropriate folder module/templatesin the backend for templates, and then change / expand.
For actions, add the same action to the file module/actions/actions.class.phpand continue it if necessary, for example:
application / backend / modules / l / actions / actions.class.php:
class blahActions extends autoBlahActions
{
public function updateBlahFromRequest()
{
parent::updateBlahFromRequest();
$this->logMessage('Object updated');
}
}
Raise source
share