Release of v5.1.1-alpha3
Add edit and create options to the ModalSelect Field (in Joomla 5).
This commit is contained in:
@ -283,6 +283,15 @@ class LibraryController extends FormController
|
||||
)
|
||||
);
|
||||
}
|
||||
// When editing in modal then redirect to modalreturn layout
|
||||
elseif ($cancel && $this->input->get('layout') === 'modal')
|
||||
{
|
||||
$id = $this->input->get('id');
|
||||
$return = 'index.php?option=' . $this->option . '&view=' . $this->view_item . $this->getRedirectToItemAppend($id)
|
||||
. '&layout=modalreturn&from-task=cancel';
|
||||
|
||||
$this->setRedirect(Route::_($return, false));
|
||||
}
|
||||
return $cancel;
|
||||
}
|
||||
|
||||
@ -365,6 +374,15 @@ class LibraryController extends FormController
|
||||
*/
|
||||
protected function postSaveHook(BaseDatabaseModel $model, $validData = [])
|
||||
{
|
||||
if ($this->input->get('layout') === 'modal' && $this->task === 'save')
|
||||
{
|
||||
// When editing in modal then redirect to modalreturn layout
|
||||
$id = $model->getState('library.id', '');
|
||||
$return = 'index.php?option=' . $this->option . '&view=' . $this->view_item . $this->getRedirectToItemAppend($id)
|
||||
. '&layout=modalreturn&from-task=save';
|
||||
|
||||
$this->setRedirect(Route::_($return, false));
|
||||
}
|
||||
// linked tables to update
|
||||
$_tables_array = [
|
||||
'library_config' => 'library',
|
||||
|
Reference in New Issue
Block a user