PHP code example of niif / shib-auth-bundle
1. Go to this page and download the library: Download niif/shib-auth-bundle library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
niif / shib-auth-bundle example snippets
$bundles = array(
...
new Niif\ShibAuthBundle\NiifShibAuthBundle(),
...
);
/**
* @Route("/logout")
* @Template()
* @return \Symfony\Component\HttpFoundation\RedirectResponse
*/
public function logoutAction()
{
return $this->redirect($this->generateUrl('logged_out'));
}
app/AppKernel.php