Skip to content
Snippets Groups Projects
Select Git revision
  • develop
  • 301-integrate-guacamole-access-management-into-sandbox-service
  • master protected
  • build-test
  • 283-cache-the-list-of-images
  • 249-create-delete_pool-tests
  • master-with-monitoring
  • 258-add-comment-to-sandboxes-and-pools
  • 259-deprecate-ssh-keys
  • terraform-workspace-locked
  • develop-no-uuid
  • develop-volumes-update
  • 231-optimize-pool-endpoint-information
  • 24.08
  • 24.06
  • v0.22.1
  • v0.22.0
  • v0.21.6
  • 23.12
  • v0.21.3
  • v0.21.2
  • 23.07
  • v0.21.1
  • 23.04
  • v0.21.0
  • 22.12 protected
  • v0.20.3-rc2
  • v0.20.3-rc
  • v0.20.2
  • v0.20.1
  • v0.20.0
  • v0.19.1
  • v0.19.0
33 results

Dockerfile.j2

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    hook_frontpage.php 454 B
    <?php
    /**
     * Hook to add the modinfo module to the frontpage.
     *
     * @param array &$links  The links on the frontpage, split into sections.
     */
    function sanitycheck_hook_frontpage(&$links)
    {
        assert(is_array($links));
        assert(array_key_exists('links', $links));
    
        $links['config']['sanitycheck'] = [
            'href' => SimpleSAML\Module::getModuleURL('sanitycheck/index.php'),
            'text' => '{sanitycheck:strings:link_sanitycheck}',
        ];
    }