K
Kirby
Guest
PHP:
If the option is shown in multiple groups and the first group belongs to an Add-on that is disabled only an error...
Read more
Continue reading...
Code:
public function actionView(ParameterBag $params)
{
$option = $this->assertOptionExists($params['option_id']);
$relation = $option->Relations->first();
$group = $relation ? $relation->OptionGroup : null;
return $this->redirect(
$group ? $this->buildLink('options/groups', $group) . '#' . $option->option_id : $this->buildLink('options')
);
}
If the option is shown in multiple groups and the first group belongs to an Add-on that is disabled only an error...
Read more
Continue reading...