You are here

function weather_perm in Weather 6.5

Same name and namespace in other branches
  1. 5.6 weather.module \weather_perm()
  2. 5 weather.module \weather_perm()

Implementation of hook_perm().

File

./weather.module, line 57
Display <acronym title="METeorological Aerodrome Report">METAR</acronym> weather data from anywhere in the world

Code

function weather_perm() {
  return array(
    'administer custom weather block',
    'access weather pages',
  );
}