It doesn't seem to work, here are the hook methods I've tried:
$this->addHookBefore('ProcessPageEdit::buildForm', $this, 'totalBooking');
$this->addHookAfter('ProcessPageEdit::buildForm', $this, 'totalBooking'); $this->addHook('ProcessPageEdit::buildForm', $this, 'totalBooking'); I can save the field like this:
$this->addHookBefore('Pages::saveReady', $this, 'totalBooking'); But I don't want to re-save a few hundred pages, just have it calculate dyanmically at page load.