We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello, i have integrated two links into a template as follows.
<div class="btn-group" role="group"> <a class="btn btn-default <?php echo ($this->url() == '/education/student-deregistration') ? 'active' : ''; ?>" href="<?php echo $this->url('education.student-deregistration', ['section' => null]); ?>">Vorklinik</a> <a class="btn btn-default <?php echo ($this->url() == '/education/student-deregistration/clinical') ? 'active' : ''; ?>" href="<?php echo $this->url('education.student-deregistration', ['section' => 'clinical']); ?>">Klinik</a> </div>
And This is my route.
class RouterDelegatorFactory implements DelegatorFactoryInterface { public function __invoke(ContainerInterface $container, $name, callable $callback, array $options = null) { $application = $callback(); $application->route('/education/student-deregistration[/{section:clinical|preclinical}]', StudentDeregistrationAction::class, ['GET'], 'education.student-deregistration'); return $application; } }
Now I have the following problems:
@weierophinney @RalfEggert
Originally posted by @mano87 at zendframework/zend-view#130
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello,
i have integrated two links into a template as follows.
And This is my route.
Now I have the following problems:
@weierophinney @RalfEggert
Originally posted by @mano87 at zendframework/zend-view#130
The text was updated successfully, but these errors were encountered: