You are here

function hacked_project_nocache_load in Hacked! 6

Same name and namespace in other branches
  1. 5 hacked.module \hacked_project_nocache_load()

Menu loader for loading a project from its short name.

In this function we call the calculate function both the update module and our hacked module. This may mean we return FALSE when there is no internet connection.

Parameters

$short_name The short name of the project to load.:

File

./hacked.module, line 121
The Hacked! module, shows which project have been changed since download.

Code

function hacked_project_nocache_load($short_name) {
  return hacked_project_load($short_name, TRUE);
}