PHP Classes

File: web/SSO/modules/sanitycheck/hooks/hook_sanitycheck.php

Recommend this page to a friend!
  Classes of william amed   Raptor 2   web/SSO/modules/sanitycheck/hooks/hook_sanitycheck.php   Download  
File: web/SSO/modules/sanitycheck/hooks/hook_sanitycheck.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Raptor 2
Framework that takes routes from annotations
Author: By
Last change:
Date: 8 years ago
Size: 384 bytes
 

Contents

Class file image Download
<?php
/**
 * Hook to add the modinfo module to the frontpage.
 *
 * @param array &$hookinfo hookinfo
 */
function sanitycheck_hook_sanitycheck(&$hookinfo) {
   
assert('is_array($hookinfo)');
   
assert('array_key_exists("errors", $hookinfo)');
   
assert('array_key_exists("info", $hookinfo)');

   
$hookinfo['info'][] = '[sanitycheck] At least the sanity check itself is working :)';
   
}
?>